Fix: Wrong condition in DungeonList.is_Forgotten_Hall

This commit is contained in:
LmeSzinc 2023-07-07 02:25:20 +08:00
parent 7cb6b0e999
commit ed4b4c78d8

View File

@ -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):