mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
Fix: Wrong condition in DungeonList.is_Forgotten_Hall
This commit is contained in:
parent
7cb6b0e999
commit
ed4b4c78d8
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user