Skip to content

Commit 7bbfabf

Browse files
authored
Merge pull request #2924 from Lrauq/decouple-snide-gbs
updated morpher
2 parents d688fb0 + 5993c57 commit 7bbfabf

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

morpher.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,15 @@ <h5 class="modal-title">Modal title</h5>
669669
setting_data.random_starting_region_new = setting_data.random_starting_region ? "all" : "off";
670670
delete setting_data.random_starting_region;
671671
}
672+
if (sel_version_num < numericVersion("5.7.31")) {
673+
console.log("Remapping Blueprint Banana");
674+
for (let i = 0; i < 10; i++) {
675+
if (setting_data[`item_rando_list_${i}`].includes("blueprintbanana")) {
676+
setting_data[`item_rando_list_${i}`] = setting_data[`item_rando_list_${i}`].filter(k => k !== "blueprintbanana");
677+
setting_data[`item_rando_list_${i}`].push("sniderewards");
678+
}
679+
}
680+
}
672681
// Update to include all unhandled options to unsorted
673682
const all_valid_items = Object.keys(output_json.ItemRandoListSelected);
674683
let mentioned_items = [];

0 commit comments

Comments
 (0)