diff --git a/worlds/yachtdice/__init__.py b/worlds/yachtdice/__init__.py index 13d4f9da3f..5a40713da2 100644 --- a/worlds/yachtdice/__init__.py +++ b/worlds/yachtdice/__init__.py @@ -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)