diff --git a/tasks/dungeon/keywords/classes.py b/tasks/dungeon/keywords/classes.py index 0b1c0827b..5c49a79d9 100644 --- a/tasks/dungeon/keywords/classes.py +++ b/tasks/dungeon/keywords/classes.py @@ -46,7 +46,7 @@ class DungeonList(Keyword): @cached_property def is_Forgotten_Hall(self): - return 'Forgotten_Hall' or 'Last_Vestiges' in self.name + return ('Forgotten_Hall' in self.name) or ('Last_Vestiges' in self.name) @cached_property def is_Last_Vestiges(self):