Changed advancement_goal to a Range option

This commit is contained in:
espeon65536
2021-06-08 08:58:16 -05:00
parent 622f8f8158
commit 6e33181f05
4 changed files with 11 additions and 18 deletions

View File

@@ -31,7 +31,7 @@ class TestMinecraft(TestBase):
exclusion_pools = ['hard', 'insane', 'postgame']
for pool in exclusion_pools:
setattr(self.world, f"include_{pool}_advancements", [False, False])
setattr(self.world, "advancement_goal", [0, Options.AdvancementGoal(value=0)])
setattr(self.world, "advancement_goal", [0, Options.AdvancementGoal(value=30)])
setattr(self.world, "shuffle_structures", [False, False])
setattr(self.world, "combat_difficulty", [0, Options.CombatDifficulty(value=1)])
minecraft_create_regions(self.world, 1)