From 797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 5 Oct 2025 13:10:07 -0400 Subject: Fix various minor client bugs This is what we get for not running in the editor for a while! --- apworld/client/client.gd | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'apworld/client/client.gd') 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 elif cmd == "LocationInfo": for loc in message["locations"]: location_scout_received.emit( - int(loc["id"]), - loc["item"], - loc["player"], - int(loc["flags"]), - int(loc["for_self"]) + int(loc["id"]), loc["item"], loc["player"], int(loc["flags"]), int(loc["self"]) ) elif cmd == "AccessibleLocations": -- cgit 1.4.1