We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 589cf58 commit ee03d6aCopy full SHA for ee03d6a
worlds/soe/patch.py
@@ -4,7 +4,6 @@
4
import Utils
5
from worlds.Files import APDeltaPatch
6
7
-
8
USHASH = '6e9c94511d04fac6e0a1e582c170be3a'
9
10
@@ -20,9 +19,9 @@ def get_source_data(cls) -> bytes:
20
19
21
22
def get_base_rom_path(file_name: Optional[str] = None) -> str:
23
- options = Utils.get_options()
24
if not file_name:
25
- file_name = options["soe_options"]["rom_file"]
+ from . import SoEWorld
+ file_name = SoEWorld.settings.rom_file
26
27
raise ValueError("Missing soe_options -> rom_file from host.yaml")
28
if not os.path.exists(file_name):
0 commit comments