forked from R74nCom/sandboxels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
1800 lines (1739 loc) · 73.1 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sandboxels Changelog</title>
<meta name="description" content="Latest updates to the free falling-sand browser game.">
<meta name="keywords" content="falling sand, elements, pixel art, simulator, powder">
<meta name="author" content="R74n">
<meta name="copyright" content="R74n">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all">
<!--Favicons-->
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png?v=2">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="icons/safari-pinned-tab.svg?v=2" color="#2167ff">
<link rel="shortcut icon" href="icons/favicon.ico?v=2">
<meta name="msapplication-TileColor" content="#e6d577">
<meta name="theme-color" content="#000000">
<!--OpenGraph-->
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Sandboxels Changelog">
<meta property="og:description" content="Latest updates to the free falling-sand browser game.">
<meta property="og:url" content="https://sandboxels.r74n.com">
<meta property="og:site_name" content="Sandboxels">
<meta property="og:image" content="https://sandboxels.r74n.com/icons/wallpaper.png">
<meta property="og:image:width" content="1980">
<meta property="og:image:height" content="971">
<meta property="og:image:type" content="image/png">
<meta property="og:image:alt" content="A rainforest made in Sandboxels">
<!--Twitter-->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="Latest updates to the free falling-sand browser game.">
<meta name="twitter:title" content="Sandboxels Changelog">
<meta name="twitter:site:id" content="1436857621827530753">
<meta name="twitter:image" content="https://sandboxels.r74n.com/icons/card.png">
<meta name="twitter:image:alt" content="A rainforest made in Sandboxels">
<meta name="twitter:creator:id" content="1436857621827530753">
<link rel="stylesheet" type="text/css" href="style.css?nocache=3">
<style>
/* on mobile, make h1 fit on one line */
@media only screen and (max-width: 800px) {
h1 {
font-size: 1em;
}
}
#changelog {
font-family: Arial, Helvetica, sans-serif
}
h2 {
margin-bottom: 5px;
display: inline-block;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
li {
margin-left: 20px;
margin-top: 0;
margin-bottom: 0;
padding: 0;
}
li.ad::before {
content: "+";
color: #00ff00;
}
li.ch::before {
content: "~";
color: #ffff00;
}
li.rm::before {
content: "-";
color: #ff0000;
}
li.update-section {
font-size: 1.25em;
margin-left: 10px;
}
#intro {
font-family: Arial, Helvetica, sans-serif;
}
.indent {
display: inline-block;
width: 1em;
}
</style>
</head>
<body>
<h1><a href="https://sandboxels.R74n.com" class="backbutton"><</a> Sandboxels Changelog</h1>
</ul>
<div id="changelog">
<div id="intro">
<p>Below are all of the updates to Sandboxels.</p>
<p>Suggest new additions on our <strong><a href="https://link.r74n.com/sandboxels-feedback" target="_blank">Feedback Form</a></strong>.</p>
<p>Join our <strong><a href="https://link.r74n.com/discord" target="_blank">Discord</a></strong> to be notified when new updates drop.</p>
<p>The original <a href="https://sandboxels.r74n.com/changelog.txt">plain text version</a> of this is still maintained.</p>
</div>
<h2 id="1.9.1">[Version 1.9.1 - December 1, 2023 - Cozy Solstice]</h2>
<ul>
<li>+ Pipe</li>
<li> 1. Draw a line with Pipe, maybe while paused</li>
<li> 2. Wait for walls to form around it</li>
<li> 3. Erase an exit point and allow Pipe to generate</li>
<li>+ Mayo</li>
<li>+ Mulch</li>
<li>+ Porcelain Shard (Hidden)</li>
<li>+ Jelly (Hidden)</li>
<li>[Coffee]</li>
<li>+ Coffee Bean</li>
<li>+ Coffee Ground (Hidden)</li>
<li>+ Coffee (Hidden)</li>
<li>[Nuts]</li>
<li>+ Nuts</li>
<li>+ Nut Meat (Hidden, from crushing)</li>
<li>+ Nut Butter (Hidden, from cooking)</li>
<li>+ Nut Milk (Hidden, from soaking)</li>
<li>[Festivities]</li>
<li>+ Candy is candy cane-colored</li>
<li>+ Mashed Potato (Hidden)</li>
<li>+ Skin will warm itself up when cold</li>
<li>[Other Changes]</li>
<li>+ Roots grow through Grass</li>
<li>~ Saplings no longer turn to wood all at once</li>
<li>~ Tree Branches no longer grow when burning</li>
<li>~ Tree Branches, Plant, and Grass are less flammable</li>
<li>+ Soda deoxidizes Rust and Copper</li>
<li>+ Balloons pop near absolute zero</li>
<li>+ Balloons pop when touching Clouds</li>
<li>+ Humans can consume Tomatoes, Pumpkin Seeds, and Cream</li>
<li>+ Humans get gas when eating Beans</li>
<li>+ Humans can take Gold Coins</li>
<li>+ Skin spawns at average body temperature</li>
<li>~ Skin no longer heals wounds</li>
<li>+ Snails can eat Lettuce</li>
<li>+ Tadpoles and Evergreen can be smashed</li>
<li>~ Rats no longer eat Rotten Meat</li>
<li>+ Rats can drink Milk</li>
<li>+ Lichen convert Gravel and Rock Wall to Dirt</li>
<li>+ Yeast ferments Sugar Water and Soda</li>
<li>+ Caramel freezes into Candy much colder</li>
<li>+ Baked Batter breaks into Crumbs</li>
<li>+ Rotten Meat or Cheese and Flies remove Fragrance</li>
<li>+ Primordial Soup spawns at a warmer temperature</li>
<li>+ Ammonia affects Pumpkin Seeds, Herbs, and Tomatoes</li>
<li>+ Glue can fix shards</li>
<li>+ Salt makes Water colder</li>
<li>+ Water breaks down Confetti into Cellulose</li>
<li>+ Hydrogen burns into some Steam</li>
<li>+ Hydrogen fusion releases Neutrons</li>
<li>+ Anesthesia breaks down to Oxygen at high temperatures</li>
<li>+ Castner–Kellner process</li>
<li>+ Sodium and Mercury reaction shocks and releases heat</li>
<li>+ Sulfur burns into Stench</li>
<li>+ Sugar dissolves in Milk</li>
<li>+ Salt dissolves in Sauce and Melted Cheese</li>
<li>+ Juice can be radiated</li>
<li>+ Carbonating Juice makes Soda</li>
<li>+ Seltzer can dissolve Limestone over time</li>
<li>+ Water can weather Limestone into Sand</li>
<li>+ Vinegar slowly dissolves the shell of Eggs</li>
<li>+ Baking Soda releases CO₂ when heated</li>
<li>+ Tuff melts into Magma</li>
<li>+ E-cloner ignores Wire, Sensor, and Battery</li>
<li>+ Cloners ignore Wall</li>
<li>+ Incense recipe</li>
<li>~ Fragrance now dissipates over time</li>
<li>~ Oxygen spreads Fragrance and Stench slower</li>
<li>~ Molten Solder no longer makes Fire</li>
<li>~ Recolored Molten Solder</li>
<li>~ Recolored Gold Coin</li>
<li>+ Insulation won't mix unless Shift is held</li>
<li>+ LEDs can break into Glass Shards</li>
<li>+ Cloners display element on hover</li>
<li>+ Author name appears if present in loaded save</li>
<li>+ Pressing ; toggles Replace mode</li>
<li>+ Methane Ice</li>
<li>- Removed Molten Baking Soda</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Flicker when stepping frame</li>
<li>~ Fixed: Lamp Oil burns forever</li>
<li>~ Fixed: Mushroom Gills don't conduct heat</li>
<li>~ Fixed: Pumpkin, Stained Glass, Skin, Sponge, E-cloner can be dragged</li>
<li>~ Fixed: God Raying Gray Goo makes Rainbow</li>
<li>~ Fixed: Soda deletes Salt Water quickly</li>
<li>~ Fixed: Juice Ice darkens when melting</li>
<li>~ Fixed: Sand from Water weathering Tuff uses wrong color</li>
<li>~ Fixed: Hail doesn't apply color variants when breaking</li>
<li>~ Fixed: Confirmation appears when dropping save onto empty canvas</li>
<li>~ Fixed: Sauce density too high</li>
<li>~ Fixed: Hail is way too cold</li>
<li>~ Fixed: Humans continue panicking after extinguished</li>
<li>~ Fixed: Cloned pixels don't change state based on Cloner temperature</li>
<li>~ Fixed: Antifire doesn't react with Antifluid right</li>
<li>~ Fixed: Porcelain reforms immediately after breaking when hot</li>
<li>~ Fixed: Hot Bomb often melts itself</li>
<li>~ Fixed: Hard Yolk can't be mixed into Batter/Dough</li>
<li>[Technical]</li>
<li>+ Prop tool</li>
<li>+ Option for uncompressed raw save data</li>
<li>~ Save version is now sb2</li>
<li> ~ New saves may not work in older versions</li>
<li> ~ Old saves will work fine</li>
<li> + Version handling system, warnings</li>
<li>+ Random will work when placed by cheating</li>
<li>~ FW_Ember no longer has a long name</li>
<li>+ runAfterAutogen function</li>
</ul>
<h2 id="1.9">[Version 1.9 - October 13, 2023 - Local Saves]</h2>
<ul>
<li>+ Local Saves</li>
<li> + SAVES button</li>
<li> + Save the scene to 1 of 12 slots</li>
<li> + Save the scene to a file</li>
<li> + Load a scene from a file</li>
<li> + Saves include a ton of information, even your selected element!</li>
<li> + Choose to include your settings or mods</li>
<li> + Drag & Drop or Paste a save file</li>
<li>+ Pumpkin</li>
<li> + Fireproof solid for carving activities</li>
<li>+ Pumpkin Seed</li>
<li> + Will grow when planted on soil!</li>
<li>~ Thermal View now uses a more useful logarithmic scale</li>
<li>[Changes]</li>
<li>+ Resetting now adjusts canvas size if needed</li>
<li>+ Setting for dot in center of cursor</li>
<li>+ E-cloner can select an element while unpowered</li>
<li>+ E-cloner ignores Wires and E-walls</li>
<li>+ Grass can spread on Sand, Clay, and Mycelium</li>
<li>+ Tree roots can grow through Clay</li>
<li>~ Sap no longer mixes with Sawdust</li>
<li>+ Plant and Sauce remove Stench</li>
<li>+ Humans break Eggs, Grapes, and bugs when on top of them</li>
<li>+ Humans can trample Grass</li>
<li>+ Termites can eat Confetti, Straw, and Wheat</li>
<li>+ Fleas can eat Hair</li>
<li>+ Ants can eat Honey</li>
<li>+ Snails can eat Calcium, Limestone, and Paper</li>
<li>+ Worms can infect and swim in Blood</li>
<li>+ Worms are killed by Antibodies</li>
<li>+ Eggs die at high temperatures</li>
<li>+ Bugs will form Amber when touching Sap</li>
<li>~ Frogs and Fish burn slower</li>
<li>+ Uranium dirties Salt Water</li>
<li>+ Radiation can dirty Ice</li>
<li>+ Blood is infected by Rotten Meat and Rotten Cheese</li>
<li>+ Vinegar and Limestone reaction</li>
<li>+ Ketchup slowly deoxidizes Rust</li>
<li>~ Charcoal leaves behind Ash and less CO₂</li>
<li>~ C4 no longer explodes when burnt</li>
<li>+ C4 releases poisonous fumes when burnt</li>
<li>+ C4 burns longer, can be used as fuel</li>
<li>+ C4 explodes when broken</li>
<li>+ Fireworks ignite at high temperatures</li>
<li>+ Dye dissolves in Pool Water</li>
<li>+ Ink slowly dissolves in Water</li>
<li>+ Honey dissolves in Tea</li>
<li>+ Molten Salt conducts electricity</li>
<li>+ Hair can be made by radiating Skin</li>
<li>+ Skin can absorb Soap</li>
<li>+ Proton and Electric reaction generates heat</li>
<li>+ Positron and Electric reaction generates Light</li>
<li>+ Escape key resets to Normal View</li>
<li>~ Recolored Tuff</li>
<li>~ Recolored Blood</li>
<li>~ Selected element outline is more clear</li>
<li>~ Improved button readability</li>
<li>~ Improved canvas pixel sharpness</li>
<li>+ Pressing - or + button centers the cursor</li>
<li>~ Step button is now an arrow</li>
<li>+ Clear Saves setting</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Fireworks and Flash don't transfer heat</li>
<li>~ Fixed: Flash from Heat Ray is not hot</li>
<li>~ Fixed: Alcohol Gas density too high</li>
<li>~ Fixed: Pistil and Mushroom Gill can be dragged</li>
<li>~ Fixed: Herb can't be mixed in Batter or Dough</li>
<li>~ Fixed: Amber spawns at high temperature</li>
<li>~ Fixed: Heads can detach if Body moves during reaction</li>
<li>~ Fixed: Many Flour reactions make Gingerbread instead of Dough</li>
<li>~ Fixed: Ghost pixels when burning Plague, other deleting gases</li>
<li>~ Fixed: Color picker always appears when toggling GUI on (F1)</li>
<li>~ Fixed: Cooldowned elements can't be placed before 8th tick</li>
<li>~ Fixed: Frozen Fish break into Slime</li>
<li>[Technical]</li>
<li>+ logMessage() function</li>
<li>+ SOIL eList</li>
<li>+ generateSave() and loadSave() functions</li>
<li>+ resizeCanvas() and autoResizeCanvas() functions</li>
<li>+ sb1 save format</li>
<li>~ Browser dark color scheme for UI elements</li>
<li>~ Light, Laser, etc. use bx/by instead of vx/vy (velocity.js fix)</li>
</ul>
<h2 id="1.8.6">[Version 1.8.6 - August 21, 2023 - Reaction Overload]</h2>
<ul>
<li>+ Tomato</li>
<li>+ Sauce</li>
<li>+ Sensor - Detects movable pixels</li>
<li>+ Tuff - Formed from Ash and Magma</li>
<li>+ Clicking on an element again will deselect it</li>
<li>+ Sun world gen type</li>
<li>[Changes]</li>
<li>~ Moved Salt to Food category [Feedback?]</li>
<li>+ Supernovae create many more elements</li>
<li>+ Stench now dissipates over time</li>
<li>+ Humans can drink Soda</li>
<li>+ Worms turn Ash and Crumbs into some Dirt</li>
<li>+ Birds can eat Crumbs</li>
<li>+ Birds and Rats spawn at body temperature</li>
<li>+ Flies can eat Honey</li>
<li>+ Grapes can be crushed by Limestone</li>
<li>+ Grapes will stick to Vine on all sides</li>
<li>+ Some Vines can grow Grapes or Tomatoes</li>
<li>+ Ketchup can be radiated</li>
<li>+ Eggs will crack if Rocks land on them</li>
<li>+ Seeds element can spawn Cacti</li>
<li>+ Candy breaks into Sugar</li>
<li>+ Snails break into Calcium</li>
<li>+ Lichen and Pollen break into Dust</li>
<li>+ Fleas and Termites die when broken</li>
<li>+ All seeds can be broken or frozen</li>
<li>+ Mercury can turn to Gold when hit with Neutrons</li>
<li>+ Mercury kills Plant and Grass</li>
<li>+ Grass can photosynthesize</li>
<li>+ Yogurt color variants for milk variants</li>
<li>+ Foam freezes into Dry Ice</li>
<li>+ Steel and Bronze can oxidize</li>
<li>+ Brass can corrode on contact with Ammonia</li>
<li>+ Confetti slowly breaks down in Water</li>
<li>+ Pool Water, Steam, Primordial Soup, and Fire can oxidize things</li>
<li>+ Charcoal purifies Pool Water</li>
<li>+ Charcoal desaturates Alcohol</li>
<li>+ Dioxins are absorbed by Ash and soils</li>
<li>+ Dioxin, Lead, and Solder dirty Water</li>
<li>+ Baking Soda and Acid reaction</li>
<li>+ Calcium and Water reaction</li>
<li>+ Limestone releases some Carbon Dioxide when heated</li>
<li>+ Quicklime can be converted back to Limestone with CO₂</li>
<li>+ Slaked Lime with Milk can make Glue</li>
<li>+ Lamp Oil starts burning at 220°C</li>
<li>+ Lamp Oil breaks down Wax</li>
<li>+ Lasers can break into Light</li>
<li>~ Liquid Light dissipates much slower</li>
<li>+ Light hitting Oxygen high up can form Ozone</li>
<li>+ Ozone forms when Lightning hits a body of Water</li>
<li>+ Ozone can kill Cells, Cancer, Infection, Plague, and small animals</li>
<li>~ Ozone oxidizes things faster than Oxygen</li>
<li>+ Ozone removes Chlorine</li>
<li>+ Chlorine can damage Tree Branches, Roots, and Pistils</li>
<li>+ Chlorine and burning Oil reaction</li>
<li>+ Chlorine and Baking Soda reaction</li>
<li>+ Chlorine and Sodium reaction</li>
<li>+ Greek Fire ignites on contact with water</li>
<li>+ Greek Fire recipe</li>
<li>~ Greek Fire no longer is burning by default</li>
<li>+ Sand and Vinegar can put out Greek Fire</li>
<li>+ Greek Fire and Vinegar can wet soil</li>
<li>+ Vinegar and Sodium also produces Hydrogen</li>
<li>+ Vinegar boils into Carbon Dioxide and Methane</li>
<li>+ Methane and Propane can be ignited with electricity</li>
<li>+ Sodium and Water also produces Hydrogen</li>
<li>~ Tweaked Sodium and Water reaction</li>
<li>+ Sodium can react with Pool Water and Primordial Soup</li>
<li>+ Uranium radiates Primordial Soup slowly</li>
<li>+ Primordial Soup is killed by Soap, Alcohol, and Mercury</li>
<li>+ Fish and Worms can swim in Primordial Soup</li>
<li>+ Primordial Soup converts Blood to Antibodies</li>
<li>+ Bleach deletes Blood</li>
<li>+ Bleach turns Poison into a gas</li>
<li>+ Skin wound healing</li>
<li>+ Skin will sweat to regulate temperature</li>
<li>+ Skin will bleed on contact with Acid</li>
<li>+ Skin will convert Cells</li>
<li>~ Infection no longer turns Cells to Cancer</li>
<li>+ Skin can spread Cancer</li>
<li>+ Skin and Hair can be radiated</li>
<li>+ Skin and Hair can break into Dust</li>
<li>+ Hair can burn into some Stench</li>
<li>+ Hair can be poisoned</li>
<li>+ Antidote deleting Poison is more random</li>
<li>~ Cement is more random when hardening</li>
<li>+ Nitro explodes on smash</li>
<li>~ Ammonia and Methane reaction also makes Hydrogen and Water</li>
<li>~ Tweaked Lead color</li>
<li>+ Molten Metal Scrap</li>
<li>+ Ammonia Ice</li>
<li>+ Oxidized Copper alias Copper Carbonate</li>
<li>+ Oil alias Petroleum</li>
<li>+ Alcohol, Cement, Concrete, and Cloners display with dark text</li>
<li>+ JavaScript disabled message</li>
<li>+ Unmixable elements specified in info page</li>
<li>~ Tweaked Drag color</li>
<li>~ Reordered Machines category</li>
<li>~ Randomized social link at bottom</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Mods don't show in Mod Manager and can't be removed after crash</li>
<li>~ Fixed: Scroll disabled on fullscreen</li>
<li>~ Fixed: Pixels float if Drag is unselected by middle click or E prompt</li>
<li>~ Fixed: Border and Rainbow can be moved by Drag</li>
<li>~ Fixed: Border can be destroyed by Strange Matter</li>
<li>~ Fixed: Tools can be placed with Image tool</li>
<li>~ Fixed: Heat Ray doesn't make single pixels change state</li>
<li>~ Fixed: Bless doesn't remove Poison Gas or Poison Ice</li>
<li>~ Fixed: Heads don't fall through gases</li>
<li>~ Fixed: Rotten Meat at abs zero creates living abs zero flies</li>
<li>~ Fixed: Charcoal dirties Salt Water</li>
<li>~ Fixed: Pistils don't conduct heat or spread burning</li>
<li>~ Fixed: Density too high for Poison Gas, Dioxin, Liquid Ammonia, and Gallium Gas</li>
<li>~ Fixed: Sodium Acetate foams forever</li>
<li>~ Fixed: Lettuce can't be mixed into Dough or Batter</li>
<li>[Technical]</li>
<li>+ Special Unknown element</li>
<li> Used when no element is selected</li>
<li> Replaces pixels created with invalid element</li>
<li> Will show the invalid element in Debug</li>
</ul>
<h2 id="1.8.5">[Version 1.8.5 - July 27, 2023]</h2>
<ul>
<li>+ Drag tool</li>
<li>+ Tree color variety (8 variants!)</li>
<li>~ Mobile UI improvements</li>
<li>+ Warp (Special)</li>
<li>+ Crumb (Hidden, from broken foods)</li>
<li>+ Skin (Solid)</li>
<li>+ Hair (Hidden)</li>
<li>[States]</li>
<li>+ Soda Ice (Hidden)</li>
<li>+ Bleach Ice (Hidden)</li>
<li>+ Frozen Vinegar (Hidden)</li>
<li>+ Amber (Hidden, frozen Sap)</li>
<li>+ Perfume (Hidden, liquid Fragrance)</li>
<li>+ Liquid Stench (Hidden)</li>
<li>[Changes]</li>
<li>+ Molten Dirt can solidify into some Rock</li>
<li>+ Tools have descriptions on info page</li>
<li>+ Oil dirties Water</li>
<li>+ Humans will panic and run when burning</li>
<li>+ Rad Shards and Molten Rad Glass can produce radiation</li>
<li>+ Light and Laser retain color when liquified</li>
<li>+ Slag can be formed with Dirt</li>
<li>+ Slag can break into Gravel</li>
<li>+ Corn breaks into Flour</li>
<li>+ Mushrooms can release Poison when broken</li>
<li>+ Poison and Antidote can wet soil</li>
<li>+ Juice can wet Flour</li>
<li>+ Blood can oxidize Iron and Copper</li>
<li>+ Fallout will infect Blood</li>
<li>+ Birds turn to white meat when cooked</li>
<li>+ Birds smash into Blood</li>
<li>+ Cacti can be killed by Vinegar, Bleach, Baking Soda, and Alcohol</li>
<li>+ Humans can be killed by Poison and Cyanide</li>
<li>+ Cells can be killed by Plague, Soap, Mercury, Chlorine, and Cyanide</li>
<li>+ Dioxin can kill Plants, Grass, Vines, Saplings, and Cacti</li>
<li>+ Vinegar can kill Frogs slowly</li>
<li>+ Vinegar can kill Grass</li>
<li>+ Algae dies at hot and cold temperatures</li>
<li>+ Dust will burn at high temperatures</li>
<li>+ Melted Wax will break down at high temperatures</li>
<li>+ Uranium conducts electricity</li>
<li>+ Unburn tool can put out Embers and Torches</li>
<li>+ Bless turns Static to Rainbow</li>
<li>+ Static conducts electricity</li>
<li>+ Grapes can turn Water into Juice</li>
<li>+ Primordial Soup can wet Clay Soil</li>
<li>+ Hydrogen produces heat during fusion</li>
<li>+ Helium, Hydrogen, and Mercury Gas glow when electrified</li>
<li>+ Cactus and Liquid Light random events</li>
<li>+ Cement can be made with Slaked Lime</li>
<li>~ Recolored Slaked Lime</li>
<li>~ Placing Petals or Mushroom Caps now picks a random color</li>
<li>~ Unhid Petal</li>
<li>~ Hid Root</li>
<li>~ Moved Bamboo to Solids</li>
<li>~ Moved Steel</li>
<li>~ Moved Melted Cheese, Butter, and Chocolate to States</li>
<li>~ Moved Liquid Hydrogen, Helium, and Neon to States</li>
<li>~ States category always appears last if unhidden</li>
<li>~ Humans rot more randomly</li>
<li>~ Bamboo Plant grows faster</li>
<li>~ Worms no longer break Eggs</li>
<li>~ Strange Matter can no longer travel through indestructible things</li>
<li>~ Strange Matter can no longer destroy Void</li>
<li>~ Tweaked Molten Uranium radiation rate</li>
<li>[Fixes]</li>
<li>~ Fixed: Alt-Tab locks Alt key</li>
<li>~ Fixed: Cacti break into Sap</li>
<li>~ Fixed: Cream deletes infinite Soda and Juice</li>
<li>~ Fixed: Null in info page error (e.g. tea)</li>
<li>~ Fixed: Unknown element in info page error (e.g. salt)</li>
<li>~ Fixed: Reactions, related, and aliases don't show up in tool info pages</li>
<li>~ Capitalization fixes</li>
<li>[Technical]</li>
<li>+ Element properties onSelect, onMouseUp, perTick, singleColor</li>
<li>~ Element property fireElement can accept null</li>
</ul>
<h2 id="1.8.4">[Version 1.8.4 - July 11, 2023]</h2>
<ul>
<li>+ Image placing<ul>
<li>+ Image tool in Special</li>
<li>+ Select any image from your computer</li>
<li>+ Place it on the canvas at any scale</li>
<li>+ Choose its element or disable smoothing in Settings</li>
<li>+ Burn it, blow it up, or make it a powder!</li>
<li>+ Paste or Drag-and-Drop images!</li></ul></li>
<li>[Stay tuned for bigger updates in the coming months!]</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Old browsers that don't support ECMAScript 2016 crash</li>
</ul>
<h2 id="1.8.3">[Version 1.8.3 - May 16, 2023 - Deserted Update]</h2>
<ul>
<li>+ Cactus</li>
<li>+ Fancy Changelog and Controls pages</li>
<li>+ Toggle Burning setting</li>
<li>+ Broth Ice (Hidden)</li>
<li>+ Rad Shard (Hidden)</li>
<li>+ Linked to our <a href="https://sandboxels.wiki.gg/" target="_blank" title="Official Sandboxels Wiki - wiki.gg">official Sandboxels Wiki</a> on wiki.gg</li>
<li>[Changes]</li>
<li>+ Cacti and Charcoal now spawn in Desert world gen</li>
<li>+ Petals will fall slowly if detached from flower</li>
<li>+ Pointer color can be customized</li>
<li>+ Bless grows Grass on Dirt</li>
<li>+ Frogs can somewhat swim</li>
<li>+ Pool Water can kill Frogs and Seeds</li>
<li>+ Pool Water will break down Blood and Poison</li>
<li>+ Cream releases Steam when boiling</li>
<li>+ Cream can wet soil</li>
<li>+ Popcorn pops when made from Corn</li>
<li>+ Melted Butter stains solids</li>
<li>+ Mushroom parts break into Mycelium</li>
<li>+ Eggs melting leaves behind Sulfur Gas</li>
<li>+ Eggs won't break when dropped on soft material</li>
<li>+ Bless turns Molten Lead to Molten Gold</li>
<li>+ Unique fire colors for Molten Copper, Lead, Zinc, Salt, and Calcium</li>
<li>+ Broth can be made from Bones and Mushroom parts</li>
<li>+ Unique Broth color for soups with Flowers, Potato, Rotten Meat, Cheese, Beans, Wheat, Algae</li>
<li>+ Milk and Cream can be churned to Butter</li>
<li>+ Rats can eat Eggnog</li>
<li>+ Fish eat Yolk and Cell</li>
<li>+ Ants can drink Juice</li>
<li>+ Soap kills bugs</li>
<li>+ Ozone kills Plant</li>
<li>+ Charcoal, Roots, Hyphae, and Amalgam conduct electricity</li>
<li>+ Rad Glass has a texture when placed manually</li>
<li>+ Rad Glass can be made with Fallout</li>
<li>+ LEDs melt into Gallium</li>
<li>+ Molten Calcium can burn</li>
<li>+ Salt alias 'Sodium Chloride'</li>
<li>+ Anesthesia alias 'Nitrous Oxide'</li>
<li>+ Anesthesia turns Clouds to Acid Clouds</li>
<li>+ Anesthesia depletes Ozone</li>
<li>+ Sulfur alias 'Sulphur'</li>
<li>+ TNT alias 'Trinitrotoluene'</li>
<li>+ DNA alias 'Deoxyribonucleic Acid'</li>
<li>+ DNA from Cancer appears corrupted</li>
<li>+ Potatoes can explode when radiated</li>
<li>+ Cellulose freezes into Paper</li>
<li>+ Bees can be crushed into Honey</li>
<li>+ Bamboo and Vines can convert Carbon Dioxide to Oxygen</li>
<li>+ Flour can be wet by Pool Water, Milk, Cream, Broth, Soda, Tea, Blood, Antibody, and Infection</li>
<li>+ Slag can be made with Smog, Pyrocumulus, Dioxin, and Poison Gas</li>
<li>+ Cream changes color when mixed with Milk variant ingredients</li>
<li>+ Radiation affects Aluminum, Pool Water, Soda, Broth, and Tea</li>
<li>+ Pistils can be broken</li>
<li>+ Sugar and Candy dissolve in Soda</li>
<li>+ Bleach and Yeast reaction generates heat</li>
<li>+ Bleach and Soap reaction</li>
<li>+ Bleach breaks down Antidote</li>
<li>+ Sponge creates Bubbles when absorbing Soap</li>
<li>~ Potatoes, Straw, Wheat, and Worms burn slower</li>
<li>~ Sap boils at a lower point</li>
<li>~ Strange Matter is now a liquid</li>
<li>~ Bless turns Soda into Seltzer</li>
<li>~ Cellulose burns less</li>
<li>~ Recolored Frozen Meat</li>
<li>~ Adjusted Sulfur Gas density</li>
<li>~ Adjusted Molten Gallium density</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Grape Juice and Potato Juice turns yellow when frozen</li>
<li>~ Fixed: Color-customizable elements don't show selector if hidden</li>
<li>~ Fixed: Foam created by other foam takes air temperature</li>
<li>[Technical]</li>
<li>+ Element property glow for gas effect (true/false)</li>
<li>+ LIGHTWEIGHT behavior preset</li>
<li>+ Reaction properties burning1 and burning2 requirement (true/false)</li>
<li>~ Seeds element now uses eLists.SEEDS</li>
</ul>
<h2 id="1.8.2">[Version 1.8.2 - May 12, 2023 - Very Necessary Update]</h2>
<ul>
<li>+ Lettuce</li>
<li>+ Liquid Light at absolute zero (Hidden)</li>
<li>+ Ice Cream (Frozen Milk)</li>
<li>+ Baked Potato (Hidden)</li>
<li>+ Bricks and Glass have a texture when placed</li>
<li>+ Clay Shard</li>
<li>+ Frozen Fish (Hidden, 25% chance)</li>
<li>~ Smash is now located on the toolbar</li>
<li>+ Press R to reset scene</li>
<li>+ Toggle buttons in Settings</li>
<li>+ Fancy Textures setting</li>
<li>+ Default View setting for mobile</li>
<li>+ Air Temp, Air Density, and Abs Zero settings</li>
<li>+ Mushrooms world gen type</li>
<li>[Changes]</li>
<li>~ Liquid Helium now has new superfluid behavior</li>
<li>~ Burning now stops below 0°C</li>
<li>~ Porcelain unhidden in Solids</li>
<li>~ Porcelain won't mix unless Shift is held</li>
<li>~ Optimized and buffed Strange Matter</li>
<li>+ Strange Matter ignores Fire and Smoke, can be destroyed by Antimatter</li>
<li>+ Bless warms pixels below -200°C</li>
<li>+ Humans will try to regulate their body temperature</li>
<li>+ Humans can eat food</li>
<li>+ Bones and Dead Plants can turn into fossil fuels under right conditions</li>
<li>+ Charcoal can turn into Diamonds under right conditions</li>
<li>+ Sugar and Milk can dissolve in Tea</li>
<li>+ Mixing Cement will reset the time until solidification</li>
<li>+ Termites can dig through soil</li>
<li>+ Potatoes can fall to the side</li>
<li>+ Potatoes break into Juice</li>
<li>+ Borax and Glue makes Slime</li>
<li>+ Incense gives off Smoke when burning</li>
<li>+ Herbs give off Fragrance when burnt</li>
<li>+ Flying Bugs and Birds can be crushed by falling Rocks</li>
<li>+ Fish can eat Broth, Slugs, Herbs, Lettuce, Dead Plants, Lichen, Yeast, Yogurt, and Tea</li>
<li>+ Snails, Algae, Gravel, and Charcoal can clean Broth and Tea</li>
<li>+ Worms can break down Lichen</li>
<li>+ Worms can eat Yolk</li>
<li>+ Gingerbread can be made with Flour and Sap or Caramel</li>
<li>+ Infection, Antibody, and Vaccine will wet soil</li>
<li>+ Radiation affects Milk variants</li>
<li>+ Malware messes with more machines</li>
<li>+ Copper Sulfate can be used as pesticide</li>
<li>+ Bubbles and Foam remove Stench</li>
<li>+ Bless can convert Lead to Gold</li>
<li>+ Tea can be made from Wheat</li>
<li>+ Uncharge tool converts Protons to Neutrons</li>
<li>+ Uncharge tool deletes Electric</li>
<li>+ Unburn tool converts Plasma to Smoke</li>
<li>+ <a href="https://github.com/R74nCom/sandboxels/" target="_blank">GitHub</a> linked in Mod Manager</li>
<li>~ Herbs burn slower</li>
<li>~ Tweaked Rad Glass color</li>
<li>~ Tweaked Dough color</li>
<li>~ Tweaked Lookup tool color to be like Glass</li>
<li>~ Pick, Mix, Shock, Mushroom Spore, Iron, and Gray Goo now have dark text</li>
<li>~ Settings menu is taller</li>
<li>~ Reset warning no longer appears if scene is empty</li>
<li>~ Ember cools into Ash</li>
<li>~ Firework Ember cools into Carbon Dioxide</li>
<li>~ Acid ignores Hydrogen</li>
<li>~ Renamed Nitroglycerin to Nitro</li>
<li>+ Frozen Nitro (Hidden)</li>
<li>+ Cream (Hidden)</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Background color setting input not syncing after refresh</li>
<li>~ Fixed: Pixels from Spout don't inherit temperature</li>
<li>~ Fixed: Stats bar makes GUI jumpy on mobile</li>
<li>~ Fixed: Sponge doesn't conduct heat</li>
<li>~ Fixed: Flies no longer electrocute</li>
<li>~ Fixed: Sun heat transfer dependent on phase</li>
<li>~ Fixed: Neutrons/Protons/Blessing Strange Matter can make ghost pixels</li>
<li>[Technical]</li>
<li>+ colorPattern and colorKey element properties (see Brick)</li>
<li>+ SUPERFLUID behavior preset</li>
<li>+ Absolute Zero is now controlled with global variable absoluteZero</li>
<li>+ fireElement element property accepts an array of elements</li>
<li>+ breakInto element property accepts null values</li>
<li>+ Uncharge tool supports reactions</li>
<li>+ stateLowColorMultiplier element attribute for Ice Cream</li>
<li>+ darkText element attribute for buttons (true/false)</li>
</ul>
<h2 id="1.8.1">[Version 1.8.1 - April 14, 2023 - Striking Detail]</h2>
<ul>
<li>+ Lightning (!!!)</li>
<li>+ Bless</li>
<li>+ Thunder Cloud</li>
<li>+ God Ray</li>
<li>+ Heat Ray</li>
<li>+ Rotten Cheese (Hidden)</li>
<li>+ Herb</li>
<li>+ Tea (Hidden)</li>
<li>+ Rime (Hidden)</li>
<li>+ Frozen Worm (Hidden)</li>
<li>+ Frozen Ink (Hidden)</li>
<li>+ Poison Ice (Hidden)</li>
<li>+ Rain world gen type</li>
<li>+ Changelog notification after new update</li>
<li>+ Version number shown below game</li>
<li>~ Improved load times</li>
<li>[Changes]</li>
<li>~ Reworked Vines</li>
<li>+ Vines hang from ceilings and walls</li>
<li>+ Vines spread naturally sideways, down, and on walls</li>
<li>+ Frogs can absorb harmful pollutants through their skin (Educational!)</li>
<li>+ Sun brown dwarf stage</li>
<li>+ Mercury can conduct electricity</li>
<li>+ Plant, Grass, and Vine break into Dead Plant</li>
<li>+ Insects break into Dead Bugs</li>
<li>+ Borax can kill insects</li>
<li>+ Ants, Frogs, Fish, and Birds can eat Dead Bugs</li>
<li>+ Ants and Flies can eat Cheese</li>
<li>+ Birds and Rats can eat Lichen</li>
<li>+ Fish can eat Tadpoles</li>
<li>+ Fish and Tadpoles can swim in Seltzer and Pool Water</li>
<li>+ Radiation can make Frogs young again</li>
<li>+ Worms can compost Dead Bugs</li>
<li>+ Worms can break down Mudstone, Permafrost, and Packed Sand</li>
<li>+ Worms can eat Sawdust, Tinder, Dust, and Rotten Meat</li>
<li>+ Worms can break down Eggs slowly</li>
<li>+ Eggs will die when frozen</li>
<li>+ Rats can eat Gingerbread, Yogurt, and Beans</li>
<li>+ Ammonia can kill Rats</li>
<li>+ Plants absorb Carbon Dioxide from Seltzer</li>
<li>+ Plants can clean Smog</li>
<li>+ Ice Nine can convert Rad Steam</li>
<li>+ Rad Steam can radiate Glass</li>
<li>+ Stench can be burned away by Fire</li>
<li>+ Soap cleans Smog and Stench</li>
<li>+ Soap dissolves in Water</li>
<li>+ Steam is a very bad electrical conductor</li>
<li>+ Juice can wet soils</li>
<li>+ Pool Water, Blood, Soda, and Milk can wet Clay Soil</li>
<li>+ Bubble, Steam, Foam, Acid, Primordial Soup, Vaccine, and Antidote can clean stains</li>
<li>+ Malware can damage Wires</li>
<li>+ Cancer can damage Plant</li>
<li>+ Cancer can spread to Bones</li>
<li>+ Bone Marrow can freeze and be poisoned</li>
<li>+ AlGa and Water reaction</li>
<li>+ Stink Bugs can be radiated</li>
<li>+ Info page shows decimal points if density is low</li>
<li>+ New random event element choices</li>
<li>+ More Bleach reactions</li>
<li>+ Neutral Acid can vaporize</li>
<li>+ Vinegar can kill Mushrooms and Pollen</li>
<li>+ Poison, Bleach, Seltzer, and Pool Water can kill Pollen</li>
<li>~ Fireflies will kill Frogs if eaten</li>
<li>~ Recolored Mycelium</li>
<li>~ Unhid Mycelium</li>
<li>~ Hid Positron</li>
<li>~ Moved Worm apart from insects</li>
<li>~ Moved Unpaint to Special</li>
<li>~ Flies no longer eat living plants</li>
<li>~ Worms no longer decompose growing plants</li>
<li>~ EMP Bomb is no longer limited to cursor size 1</li>
<li>~ Smog condensates into Dirty Water</li>
<li>~ Lowered Poison Gas condensation point</li>
<li>~ Acid will no longer destroy Chlorine</li>
<li>~ Cyanide is now a liquid at room temperature</li>
<li>~ Hid Cyanide</li>
<li>+ Cyanide Gas, Cyanide Ice (Hidden)</li>
<li>+ Neon Ice (Hidden)</li>
<li>+ Ball recipe</li>
<li>+ Rocket recipe</li>
<li>+ Armageddon recipe</li>
<li>+ Secret rare Ball Lightning</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Hardness does not resist explosion damage</li>
<li>~ Fixed: E button (Element Select) doesn't change active category</li>
<li>~ Fixed: Vines support themselves mid-air</li>
<li>~ Fixed: Grapes break into yellow Juice</li>
<li>~ Fixed: Game takes long to load on slow connections</li>
<li>~ Fixed: Cursor box becomes thicker after drawing line</li>
<li>~ Fixed: Flies make trees grow out of control</li>
<li>~ Fixed: Dough and batter eat each other when mixing</li>
<li>~ Fixed: Tadpoles, Slugs, Snails, Lichen, Dead Bugs, and Pollen drink all Pool Water</li>
<li>~ Fixed: Roots turn Pool Water into Fiber</li>
<li>~ Fixed: Cooldown not working when maximum cursor size is 1</li>
<li>~ Fixed: Worms turn Plant and Evergreen to Roots</li>
<li>[Technical]</li>
<li>~ Optimized gas rendering</li>
<li>~ Optimized fire somewhat</li>
<li>+ SP behavior cell now works with "ignore" element property</li>
<li>+ extraTempHigh and extraTempLow element properties (see Steam)</li>
<li>+ canPlace element property, for tools that can also be placed</li>
</ul>
<h2 id="1.8">[Version 1.8 - March 17, 2023 - Cooking Update]</h2>
<ul>
<li>+ Updated Donator list</li>
<li>+ Butter</li>
<li>+ Setting to disable reset warnings</li>
<li>+ EWall, conductive wall</li>
<li>+ Rock Wall</li>
<li>+ Sodium Gas</li>
<li>[Dough and Batter]</li>
<li>+ Batter, made from Flour and Yolk (Hidden)</li>
<li>+ Can be mixed with any food to create a unique dough/batter</li>
<li>+ Baked Batter (Hidden)</li>
<li>[Changes]</li>
<li>+ Bones can break into Bone Marrow</li>
<li>+ Acid dissolves Rocks into Sand</li>
<li>+ Pyrocumulus forms in Rad Clouds</li>
<li>+ Poison can kill Tree Branches</li>
<li>+ Different cheese colors from milk variants</li>
<li>+ Bleach and Yeast reaction</li>
<li>~ Plasma no longer charged by default</li>
<li>~ Sun, Stained Glass, Wires, Flash, and Explosions won't mix unless Shift is held</li>
<li>~ Unhid Yolk</li>
<li>~ Hid Cellulose</li>
<li>~ Reordered Food category</li>
<li>~ Tweaked Flour color</li>
<li>~ Sodium has a bright yellow flame</li>
<li>~ Sulfur Gas burns quickly</li>
<li>~ Poison can kill Mushrooms</li>
<li>~ Oxygen no longer flammable, but can be destroyed by fire</li>
<li>~ Hydrogen and Oxygen now need heat to combine</li>
<li>~ Milk from Udders comes out warm</li>
<li>- Removed Controls button as it is no longer needed</li>
<li>+ Added link to <a href="https://www.reddit.com/r/sandboxels" target="_blank">Reddit</a></li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Heating trees causes odd growth patterns</li>
<li>~ Fixed: Sodium freezing point too low</li>
<li>~ Fixed: Molten Sodium missing reactions</li>
<li>~ Fixed: Melted Wax default temperature too low</li>
<li>~ Fixed: Inaccurate Mercury gas density</li>
<li>~ Fixed: Humans superconductive</li>
<li>~ Fixed: Canvas overflows on the right on mobile</li>
<li>[Technical]</li>
<li>+ onMix element attribute function(pixel1,pixel2)</li>
<li>+ isFood element attribute for Dough/Batter mixing</li>
<li>+ stateHighColorMultiplier element attribute for Batter</li>
</ul>
<h2 id="1.7.1">[Version 1.7.1 - January 8, 2023]</h2>
<ul>
<li>+ Walls and Glass aren't affected by Mix unless holding Shift</li>
<li>+ Beans</li>
<li>+ Sodium Acetate can melt</li>
<li>~ Popcorn hidden ;)</li>
</ul>
<h2 id="1.7">[Version 1.7 - December 15, 2022 - Anniversary Update]</h2>
<ul>
<li>+ Confetti</li>
<li>+ Party Popper</li>
<li>+ Balloon</li>
<li>+ Evergreen Trees</li>
<li>+ Pinecone, sapling equivalent</li>
<li>+ Evergreen (Hidden)</li>
<li>+ Gingerbread, a sturdy building material</li>
<li>+ Slush, made when snow mixes with water</li>
<li>+ Snow world gen type</li>
<li>+ Taiga world gen type</li>
<li>+ Tide Pool world gen type</li>
<li>+ New party-themed random events</li>
<li>+ Molten Ash</li>
<li>+ AlGa alloy (Hidden)</li>
<li>+ Eggnog (Hidden)</li>
<li>+ Pilk (Hidden)</li>
<li>+ Supporters list below game, donate to be added for life!</li>
<li>[Changes]</li>
<li>~ Snow more resilient to heat</li>
<li>~ Tweaked Ice color</li>
<li>~ Improved world gen for: Flower Field, Wheat Field, Forest, Jungle, Ocean</li>
<li>~ Dyanmite must now be triggered to explode</li>
<li>~ Plague now dissipates over time</li>
<li>~ Plague now dies at high temperatures</li>
<li>+ Snails and Slugs can now eat Dead Plant</li>
<li>+ Rats killed by Soap</li>
<li>+ Soap can damage Cancer</li>
<li>+ Cancer dirties Water</li>
<li>+ Cancer can now be frozen</li>
<li>+ Roots can freeze to death</li>
<li>+ Milk and variants can wet Dirt and Sand</li>
<li>+ Wet Sand can freeze</li>
<li>+ Cheerful Mode for when tragedy hits</li>
<li>- Removed Yolk random event</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Gallium freezing point too low</li>
<li>~ Fixed: Clouds getting stuck on each other</li>
<li>~ Fixed: Molten conductivity not being set properly</li>
<li>~ Fixed: Dead Bug button color not showing</li>
<li>[Technical]</li>
<li>+ "decor" world gen property, see "forest" or "tide_pool"</li>
</ul>
<h2 id="1.6.5">[Version 1.6.5 - November 16, 2022]</h2>
<ul>
<li>+ Radiated Glass</li>
<li>+ Gallium</li>
<li>~ Improved Baking Soda and Vinegar reaction</li>
<li>+ Fireflies sync up blinking over time</li>
<li>+ Bees can pollinate any plants that they touch</li>
<li>+ Added Sandboxels introduction and controls underneath game</li>
<li>+ Loading screen</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Yeast immediately killed by alcohol it ferments</li>
<li>[Technical]</li>
<li>~ Revamped CSS, report any bugs on the Discord</li>
<li>+ New "attr1" and "attr2" reaction property</li>
</ul>
<h2 id="1.6.4">[Version 1.6.4 - July 30, 2022]</h2>
<ul>
<li>+ Seeds and bombs have a short cooldown when on the lowest cursor size</li>
<li>+ Cloud (The normal, boring kind)</li>
<li>~ Tweaked cloud behavior</li>
<li>+ Positron</li>
<li>+ Strange Matter</li>
<li>+ Dead Bug (Hidden)</li>
<li>+ Pool Water (Hidden)</li>
<li>+ Poison Gas (Hidden) - Result of various lethal reactions</li>
<li>+ Ice forms of all Water and Blood variants</li>
<li>+ Flies are instantly electrocuted</li>
<li>+ Tadpoles are affected by Poison, Radiation, etc.</li>
<li>+ Flying insects will die from drowning</li>
<li>~ Adjusted Root flammability</li>
<li>~ Reduced Acid Gas's condensation point</li>
<li>~ Nerfed Yeast growth rate</li>
<li>~ Burning Bread makes a lot less ash</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Random events can blow up the Sun</li>
<li>~ Fixed: Clouds always start by moving right</li>
<li>~ Fixed: Acid Gas spawns at room temperature</li>
<li>~ Fixed: Some things immune to Acid aren't immune to Acid Gas</li>
<li>~ Fixed: Too much piling up of Rad Steam under Rad Clouds</li>
<li>[Technical]</li>
<li>+ "cooldown" element attribute, in ticks</li>
</ul>
<h2 id="1.6.3">[Version 1.6.3 - July 24, 2022 - Random Update]</h2>
<ul>
<li>+ Random Events! Enable in settings!</li>
<li>+ Electrum alloy (Hidden)</li>
<li>- Dirty Water no longer stains</li>
<li>[Minor Reactions]</li>
<li>+ Hydrogen and Sulfur will create a bad smell</li>
<li>+ Water breaks down Dyes</li>
<li>+ Gold breaks into Gold Coins</li>
<li>+ Snails eat and purify Dirty Water</li>
<li>+ Poison and Alcohol now kill Yeast</li>
<li>+ Rats can have babies after eating enough</li>
<li>+ Bees produce honey after eating enough</li>
<li>[Bug Fixes]</li>
<li>~ Fixed: Weird triangular root formations when hot</li>
<li>~ Fixed: Oil doesn’t soak into Dirt and makes infinite Mud</li>
<li>~ Fixed: Dirty Water no longer rots Meat</li>
</ul>
<h2 id="1.6.2">[Version 1.6.2 - July 10, 2022]</h2>
<ul>
<li>+ Dyes will mix colors [Warning: Laggy]</li>
<li>+ Broth, from heating meat in water</li>
</ul>
<h2 id="1.6.1">[Version 1.6.1 - May 17, 2022 - Egg Update]</h2>
<ul>
<li>+ Feather</li>
<li>+ Egg</li>
<li>+ Yolk</li>
<li>+ Birds, Frogs, Fish, and all bugs (except bees) can lay eggs after eating enough</li>
<li>+ Animal Eggs will hatch over time</li>
<li>+ Hard Yolk</li>
<li>+ Tadpole (Hidden)</li>
<li>+ DNA (Hidden), from broken cells</li>
<li>+ Homunculus (Hidden)</li>
<li>~ Animals are more resistant to temperatures</li>
<li>~ Implemented Google's Monk Skin Tone Scale for Humans</li>
<li>~ Adjusted Human shirt colors</li>
<li>+ Life can be created via the Miller-Urey method</li>
<li>+ Ice-nine can freeze more Water-based elements</li>
<li>+ Primordial Soup can create Seltzer and Oxygen</li>
<li>+ Primordial Soup can moisten the ground</li>
<li>+ Electricity speeds up Primordial Soup processes</li>
<li>+ Ants can dig through Clay Soil</li>
<li>+ Ants eat Mushroom Caps, Candy</li>
<li>~ Adjusted Ant behavior</li>
<li>~ Adjusted Ant, Fly, and Firefly color</li>
<li>+ Fleas can eat Antidote, Dead Plant</li>
<li>+ Fleas will eat Mercury and die</li>
<li>+ Fleas will eat Ketchup to no dietary gain</li>
<li>+ Salt Water kills Snails and Slugs</li>
<li>+ Stink Bugs have a diet</li>
<li>+ Mercury dirties Water</li>
<li>+ Water breaks down Mudstone</li>
<li>+ Birds breathe Oxygen</li>
<li>+ Birds eat Mushrooms, Seeds</li>
<li>+ Consistent Bird toxicity reactions</li>
<li>+ Termites can eat Sawdust, Particleboard, Tinder, and Lichen</li>
<li>+ Alcohol kills Plants</li>
<li>+ Chlorine and Baking Soda kills Algae</li>