fix
This commit is contained in:
parent
cc66e8f68f
commit
fcc5cc35ea
|
|
@ -6,3 +6,35 @@ elements.water.reactions.petal = {
|
|||
}
|
||||
}
|
||||
}
|
||||
elements.salt_water.reactions.petal = {
|
||||
func: function(pixel1, pixel2) {
|
||||
if (pixel1.temp > 64) {
|
||||
deletePixel(pixel1.x, pixel1.y);
|
||||
pixel2.element = "dye";
|
||||
}
|
||||
}
|
||||
}
|
||||
elements.sugar_water.reactions.petal = {
|
||||
func: function(pixel1, pixel2) {
|
||||
if (pixel1.temp > 64) {
|
||||
deletePixel(pixel1.x, pixel1.y);
|
||||
pixel2.element = "dye";
|
||||
}
|
||||
}
|
||||
}
|
||||
elements.seltzer.reactions.petal = {
|
||||
func: function(pixel1, pixel2) {
|
||||
if (pixel1.temp > 64) {
|
||||
deletePixel(pixel1.x, pixel1.y);
|
||||
pixel2.element = "dye";
|
||||
}
|
||||
}
|
||||
}
|
||||
elements.pool_water.reactions.petal = {
|
||||
func: function(pixel1, pixel2) {
|
||||
if (pixel1.temp > 64) {
|
||||
deletePixel(pixel1.x, pixel1.y);
|
||||
pixel2.element = "dye";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue