This commit is contained in:
espeon65536
2021-06-25 19:44:15 -05:00
65 changed files with 1075 additions and 516 deletions

View File

@@ -1,3 +1,4 @@
from worlds.hk import Options
from BaseClasses import MultiWorld
from worlds.hk.Regions import create_regions
from worlds.hk import gen_hollow
@@ -9,7 +10,6 @@ class TestVanilla(TestBase):
def setUp(self):
self.world = MultiWorld(1)
self.world.game[1] = "Hollow Knight"
import Options
for hk_option in Options.hollow_knight_randomize_options:
setattr(self.world, hk_option, {1: True})
for hk_option, option in Options.hollow_knight_skip_options.items():

View File

@@ -1,3 +1,4 @@
import worlds.minecraft.Options
from test.TestBase import TestBase
from BaseClasses import MultiWorld
from worlds import AutoWorld