From d99c2d40fb2e6fc008441cf1003d5004bf8da65e Mon Sep 17 00:00:00 2001 From: An Orbit <68935009+orbit-loona@users.noreply.github.com> Date: Mon, 17 Apr 2023 16:19:32 -0400 Subject: [PATCH] hide element --- mods/rays.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mods/rays.js b/mods/rays.js index bb689b33..d9b50e89 100644 --- a/mods/rays.js +++ b/mods/rays.js @@ -14,6 +14,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(libraryMod)) }); elements.insulate_flash = { + hidden: true, color: "#fffdcf", tick: function(pixel) { if (Math.random() < 0.75 && pixelTicks - pixel.start > 1) { @@ -251,4 +252,4 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(libraryMod)) if(!enabledMods.includes(runAfterAutogenMod)) { enabledMods.splice(enabledMods.indexOf(modName),0,runAfterAutogenMod) }; localStorage.setItem("enabledMods", JSON.stringify(enabledMods)); alert(`The "${runAfterAutogenMod}" and "${libraryMod}" mods are required and have been automatically inserted (reload for this to take effect).`); -}; \ No newline at end of file +};