From cbf4bbbca8633592c93e3352b0d3d5027f1002f4 Mon Sep 17 00:00:00 2001 From: Nicholas Saylor <79181893+nicholassaylor@users.noreply.github.com> Date: Sun, 19 Jan 2025 18:17:31 -0500 Subject: [PATCH] OoT Adjuster: Remove per_slot_randoms (#4264) --- OoTAdjuster.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/OoTAdjuster.py b/OoTAdjuster.py index 9519b191..1581d653 100644 --- a/OoTAdjuster.py +++ b/OoTAdjuster.py @@ -1,7 +1,6 @@ import tkinter as tk import argparse import logging -import random import os import zipfile from itertools import chain @@ -197,7 +196,6 @@ def set_icon(window): def adjust(args): # Create a fake multiworld and OOTWorld to use as a base multiworld = MultiWorld(1) - multiworld.per_slot_randoms = {1: random} ootworld = OOTWorld(multiworld, 1) # Set options in the fake OOTWorld for name, option in chain(cosmetic_options.items(), sfx_options.items()):