Skip to content

Commit

Permalink
One more overlay fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Jun 29, 2024
1 parent e525a79 commit e20ad46
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -1754,8 +1754,9 @@ def overlay_should_display() -> bool:
result = False
if not this.in_supercruise and this.planet_radius == 0:
result = False
if this.on_foot and not this.suit_name.startswith('explorationsuit'):
result = False
if this.on_foot:
if not this.suit_name.startswith('explorationsuit'):
result = False
elif this.docked or not this.analysis_mode:
result = False
return result
Expand Down

0 comments on commit e20ad46

Please sign in to comment.