Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrochu committed Mar 13, 2024
1 parent c2c5f28 commit 4e9791c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/zork_grand_inquisitor/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ def on_package(self, cmd: str, _args: Any) -> None:

# Options
self.game_controller.option_goal = id_to_goals()[_args["slot_data"]["goal"]]
self.game_controller.option_deathsanity = (_args["slot_data"]["deathsanity"] == 1)
self.game_controller.option_deathsanity = _args["slot_data"]["deathsanity"] == 1

self.game_controller.option_grant_missable_location_checks = (
_args["slot_data"]["grant_missable_location_checks"] == 1
_args["slot_data"]["grant_missable_location_checks"] == 1
)

async def controller(self):
Expand Down

0 comments on commit 4e9791c

Please sign in to comment.