remove ) too many

This commit is contained in:
spinerak
2024-06-11 20:22:41 +02:00
parent 7a9b3e2d8b
commit b1ed50eab3

View File

@@ -130,7 +130,7 @@ class YachtDiceWorld(World):
if frags_per_roll == 1:
self.itempool += ["Roll"] * (num_of_rolls - 1) # minus one because one is in start inventory
else:
self.itempool.append()"Roll") # always add a full roll to make generation easier (will be early)
self.itempool.append("Roll") # always add a full roll to make generation easier (will be early)
self.itempool += ["Roll Fragment"] * (frags_per_roll * (num_of_rolls - 2))
already_items = len(self.itempool)