Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Exempt-Medic <[email protected]>
  • Loading branch information
Ehseezed and Exempt-Medic authored Aug 18, 2024
1 parent bf9a71f commit 9862b95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions worlds/timespinner/LogicExtensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ def can_break_walls(self, state: CollectionState) -> bool:
def can_kill_all_3_bosses(self, state: CollectionState) -> bool:
if self.flag_prism_break:
return state.has_all({'Laser Access M', 'Laser Access I', 'Laser Access A'}, self.player)
else:
return state.has_all({'Killed Maw', 'Killed Twins', 'Killed Aelana'}, self.player)
return state.has_all({'Killed Maw', 'Killed Twins', 'Killed Aelana'}, self.player)

def has_teleport(self, state: CollectionState) -> bool:
return self.flag_unchained_keys or state.has('Twin Pyramid Key', self.player)
Expand Down
2 changes: 1 addition & 1 deletion worlds/timespinner/Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class HpCap(Range):
default = 999

class AuraCap(Range):
"""Sets the maximum Aura Lunais is allowed to have. Level 1 is 80. Djinn Inferno costs 45"""
"""Sets the maximum Aura Lunais is allowed to have. Level 1 is 80. Djinn Inferno costs 45."""
display_name = "Aura Cap"
range_start = 45
range_end = 999
Expand Down

0 comments on commit 9862b95

Please sign in to comment.