about summary refs log tree commit diff stats
path: root/apworld/client/client.gd
diff options
context:
space:
mode:
Diffstat (limited to 'apworld/client/client.gd')
-rw-r--r--apworld/client/client.gd4
1 files changed, 4 insertions, 0 deletions
diff --git a/apworld/client/client.gd b/apworld/client/client.gd index 05b2b6c..286ad4b 100644 --- a/apworld/client/client.gd +++ b/apworld/client/client.gd
@@ -227,6 +227,10 @@ func scoutLocations(loc_ids):
227 sendMessage([{"cmd": "LocationScouts", "locations": loc_ids}]) 227 sendMessage([{"cmd": "LocationScouts", "locations": loc_ids}])
228 228
229 229
230func sendQuit():
231 sendMessage([{"cmd": "Quit"}])
232
233
230func hasItem(item_id): 234func hasItem(item_id):
231 return _received_items.has(item_id) 235 return _received_items.has(item_id)
232 236