Skip to content

Commit

Permalink
that one i guess
Browse files Browse the repository at this point in the history
  • Loading branch information
NewSoupVi authored Aug 31, 2024
1 parent 38cc793 commit 84222bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/witness/hints.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def try_getting_location_group_for_location(world: "WitnessWorld", hint_loc: Loc
def word_direct_hint(world: "WitnessWorld", hint: WitnessLocationHint) -> WitnessWordedHint:
location_name = hint.location.name
if hint.location.player != world.player:
location_name += " (" + world.multiworld.player_name[hint.location.player] + ")"
location_name += " (" + world.multiworld.get_player_name(hint.location.player) + ")"

item = hint.location.item

Expand All @@ -229,7 +229,7 @@ def word_direct_hint(world: "WitnessWorld", hint: WitnessLocationHint) -> Witnes
item_name = item.name

if item.player != world.player:
item_name += " (" + world.multiworld.player_name[item.player] + ")"
item_name += " (" + world.multiworld.get_player_name(item.player) + ")"

hint_text = ""
area: Optional[str] = None
Expand Down

0 comments on commit 84222bc

Please sign in to comment.