diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-10-05 13:10:07 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-10-05 13:10:07 -0400 |
commit | 797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3 (patch) | |
tree | 46321474a44c374c0c6f8c4186986c8ea92ddeb5 /apworld/client/player.gd | |
parent | 87cf89b1961564f0daadeaedd1835a0dac01dffc (diff) | |
download | lingo2-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/player.gd')
-rw-r--r-- | apworld/client/player.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apworld/client/player.gd b/apworld/client/player.gd index 5417a48..f387929 100644 --- a/apworld/client/player.gd +++ b/apworld/client/player.gd | |||
@@ -31,6 +31,7 @@ func _ready(): | |||
31 | if ( | 31 | if ( |
32 | door.get_type() == gamedata.SCRIPT_proto.DoorType.ITEM_ONLY | 32 | door.get_type() == gamedata.SCRIPT_proto.DoorType.ITEM_ONLY |
33 | or door.get_type() == gamedata.SCRIPT_proto.DoorType.GALLERY_PAINTING | 33 | or door.get_type() == gamedata.SCRIPT_proto.DoorType.GALLERY_PAINTING |
34 | or door.get_type() == gamedata.SCRIPT_proto.DoorType.CONTROL_CENTER_COLOR | ||
34 | ): | 35 | ): |
35 | continue | 36 | continue |
36 | 37 | ||