diff options
Diffstat (limited to 'client/Archipelago')
-rw-r--r-- | client/Archipelago/player.gd | 5 |
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() |