tool that unburns things
This commit is contained in:
parent
1ede070758
commit
64c03122de
|
|
@ -6,4 +6,14 @@ elements.igniter = {
|
||||||
},
|
},
|
||||||
category: "tools",
|
category: "tools",
|
||||||
excludeRandom: true,
|
excludeRandom: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.extinguisher = {
|
||||||
|
color: "#bad1e3",
|
||||||
|
tool: function(pixel) {
|
||||||
|
if(pixel.burnStart) { delete pixel.burnStart }
|
||||||
|
pixel.burning = false;
|
||||||
|
},
|
||||||
|
category: "tools",
|
||||||
|
excludeRandom: true,
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue