Skip to content

Commit

Permalink
output death link option in seed information
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrochu committed Nov 23, 2024
1 parent caf0d45 commit 06e2062
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions worlds/zork_grand_inquisitor/game_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,11 @@ def output_seed_information(self) -> None:
else:
self.log(f" Grant Missable Location Checks: Off")

if self.option_death_link:
self.log(f" Death Link: On")
else:
self.log(f" Death Link: Off")

def output_starter_kit(self) -> None:
if self.starter_kit is None:
return
Expand Down

0 comments on commit 06e2062

Please sign in to comment.