about summary refs log tree commit diff stats
path: root/client
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-13 12:43:37 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-13 12:43:37 -0400
commit95b50d5ac1714bf7e9869e12dfe13f4addec66f5 (patch)
treead3fda2cf9dafebf522fb8f49f2692fe49954a28 /client
parentb629dfb3f196dc787b2e477ea0dbdbe1c5b9eabe (diff)
downloadlingo2-archipelago-95b50d5ac1714bf7e9869e12dfe13f4addec66f5.tar.gz
lingo2-archipelago-95b50d5ac1714bf7e9869e12dfe13f4addec66f5.tar.bz2
lingo2-archipelago-95b50d5ac1714bf7e9869e12dfe13f4addec66f5.zip
[Client] Fixed warnings in gallery
Diffstat (limited to 'client')
-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 b4f7cc7..0614077 100644 --- a/client/Archipelago/player.gd +++ b/client/Archipelago/player.gd
@@ -36,7 +36,10 @@ func _ready():
36 if not door.has_ap_id(): 36 if not door.has_ap_id():
37 continue 37 continue
38 38
39 if door.get_type() == gamedata.SCRIPT_proto.DoorType.ITEM_ONLY: 39 if (
40 door.get_type() == gamedata.SCRIPT_proto.DoorType.ITEM_ONLY
41 or door.get_type() == gamedata.SCRIPT_proto.DoorType.GALLERY_PAINTING
42 ):
40 continue 43 continue
41 44
42 var locationListener = ap.SCRIPT_locationListener.new() 45 var locationListener = ap.SCRIPT_locationListener.new()