Stardew Valley: Make progressive movie theater a progression trap (#3985)

This commit is contained in:
agilbert1412
2024-11-26 18:44:33 -05:00
committed by GitHub
parent 0dade05133
commit 75624042f7
7 changed files with 10 additions and 9 deletions

View File

@@ -306,7 +306,7 @@ class SVTestBase(RuleAssertMixin, WorldTestBase, SVTestCase):
def create_item(self, item: str) -> StardewItem:
created_item = self.world.create_item(item)
if created_item.classification == ItemClassification.progression:
if created_item.classification & ItemClassification.progression:
self.multiworld.worlds[self.player].total_progression_items -= 1
return created_item