about summary refs log tree commit diff stats
path: root/apworld/client/client.gd
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-10-05 13:10:07 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-10-05 13:10:07 -0400
commit797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3 (patch)
tree46321474a44c374c0c6f8c4186986c8ea92ddeb5 /apworld/client/client.gd
parent87cf89b1961564f0daadeaedd1835a0dac01dffc (diff)
downloadlingo2-archipelago-797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3.tar.gz
lingo2-archipelago-797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3.tar.bz2
lingo2-archipelago-797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3.zip
Fix various minor client bugs
This is what we get for not running in the editor for a while!
Diffstat (limited to 'apworld/client/client.gd')
-rw-r--r--apworld/client/client.gd6
1 files changed, 1 insertions, 5 deletions
diff --git a/apworld/client/client.gd b/apworld/client/client.gd index a0abee9..9a4b402 100644 --- a/apworld/client/client.gd +++ b/apworld/client/client.gd
@@ -158,11 +158,7 @@ func _on_web_socket_server_message_received(_peer_id: int, packet: String) -> vo
158 elif cmd == "LocationInfo": 158 elif cmd == "LocationInfo":
159 for loc in message["locations"]: 159 for loc in message["locations"]:
160 location_scout_received.emit( 160 location_scout_received.emit(
161 int(loc["id"]), 161 int(loc["id"]), loc["item"], loc["player"], int(loc["flags"]), int(loc["self"])
162 loc["item"],
163 loc["player"],
164 int(loc["flags"]),
165 int(loc["for_self"])
166 ) 162 )
167 163
168 elif cmd == "AccessibleLocations": 164 elif cmd == "AccessibleLocations":