From 24bcb8f96ed51af99b909934717f956f04b6a2de Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Thu, 18 May 2023 18:35:31 -0400 Subject: [PATCH] Delete Legend Element --- mods/Legend Element | 61 --------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 mods/Legend Element diff --git a/mods/Legend Element b/mods/Legend Element deleted file mode 100644 index 133d54fa..00000000 --- a/mods/Legend Element +++ /dev/null @@ -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!"); - - }); - -}