We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f7ebe3 commit 3b5f9d1Copy full SHA for 3b5f9d1
worlds/timespinner/__init__.py
@@ -49,11 +49,9 @@ class TimespinnerWorld(World):
49
50
precalculated_weights: PreCalculatedWeights
51
52
- def __init__(self, world: MultiWorld, player: int):
53
- super().__init__(world, player)
54
- self.precalculated_weights = PreCalculatedWeights(world, player)
55
-
56
def generate_early(self) -> None:
+ self.precalculated_weights = PreCalculatedWeights(self.multiworld, self.player)
+
57
# in generate_early the start_inventory isnt copied over to precollected_items yet, so we can still modify the options directly
58
if self.multiworld.start_inventory[self.player].value.pop('Meyef', 0) > 0:
59
self.multiworld.StartWithMeyef[self.player].value = self.multiworld.StartWithMeyef[self.player].option_true
0 commit comments