Delete Legend Element

This commit is contained in:
PumpkinPriest 2023-05-18 18:35:31 -04:00 committed by GitHub
parent bb999431f4
commit 24bcb8f96e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 61 deletions

View File

@ -1,61 +0,0 @@
elements.liquid_legend = {
color: "#13d644",
behavior: behaviors.LIQUID,
category: "energy_liquids",
viscosity: 43,
state: "liquid",
density: 720,
};
behaviors.liquid_legend.tick = function(pixel) {
if (tryMove(pixel, pixel.x, pixel.y+1)) {
console.log("Moved!");
}
else {
console.log("Couldn't move!")
}
};
if (!elements.liquid_legend.reactions) {
elements.liquid_legend.reactions = {}
}
elements.liquid_legend.reactions.magma = { "elem1":null, "elem2":"armageddon" }
elements.liquid_legend.reactions.radiation = { "elem1":null, "elem2":"fallout" }
AfterLoad(function() {
6766
console.log("Hello World!");
});
if (enabledMods.includes("test.js")) {
runAfterLoad(function() {
6766
console.log("Hello World!");
});
}