about summary refs log tree commit diff stats
path: root/client/Archipelago/player.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/Archipelago/player.gd')
-rw-r--r--client/Archipelago/player.gd5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/Archipelago/player.gd b/client/Archipelago/player.gd index 0614077..f0b214f 100644 --- a/client/Archipelago/player.gd +++ b/client/Archipelago/player.gd
@@ -97,7 +97,10 @@ func _ready():
97 != ap.kLETTER_BEHAVIOR_VANILLA 97 != ap.kLETTER_BEHAVIOR_VANILLA
98 ): 98 ):
99 var scout = ap.scout_location(letter.get_ap_id()) 99 var scout = ap.scout_location(letter.get_ap_id())
100 if scout != null: 100 if (
101 scout != null
102 and not (scout["player"] == ap.client._slot and scout["flags"] & 4 != 0)
103 ):
101 var item_name = "Unknown" 104 var item_name = "Unknown"
102 var item_player_game = ap.client._game_by_player[float(scout["player"])] 105 var item_player_game = ap.client._game_by_player[float(scout["player"])]
103 if ap.client._item_id_to_name[item_player_game].has(scout["item"]): 106 if ap.client._item_id_to_name[item_player_game].has(scout["item"]):