From cb8d80ee8153565269fb9c4dccff0d78625a3653 Mon Sep 17 00:00:00 2001 From: Lily-129 <68935009+Lily-129@users.noreply.github.com> Date: Sat, 22 Jan 2022 20:31:38 -0500 Subject: [PATCH] test 3 cum --- mods/randomness.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mods/randomness.js b/mods/randomness.js index 735c5fbc..b6476113 100644 --- a/mods/randomness.js +++ b/mods/randomness.js @@ -345,6 +345,10 @@ elements.lb1 = { } runAfterLoad(function() { + randomChoices.splice(randomChoices.indexOf("burning_unnamed_gas"), 1); + randomChoices.splice(randomChoices.indexOf("burning_unnamed_powder"), 1); + randomChoices.splice(randomChoices.indexOf("black_decay"), 1); + elements.tungstensteel.behavior = [ "XX|DL:"+eLists.FAIRY+"|XX", "DL:"+eLists.FAIRY+"|XX|DL:"+eLists.FAIRY+"", @@ -355,6 +359,4 @@ runAfterLoad(function() { "DL:"+eLists.FAIRY+" AND M2|XX|DL:"+eLists.FAIRY+" AND M2", "M1|DL:"+eLists.FAIRY+"|M1", ] - var toRemove = ["burning_unnamed_gas","burning_unnamed_powder","black_decay"]; - this.randomChoices = this.randomChoices.filter((item) => !toRemove.includes(item)); });