about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--client/Archipelago/player.gd3
-rw-r--r--client/CHANGELOG.md10
-rw-r--r--data/maps/the_great/doors.txtpb2
4 files changed, 15 insertions, 1 deletions
diff --git a/README.md b/README.md index b8e3824..fa81210 100644 --- a/README.md +++ b/README.md
@@ -80,6 +80,7 @@ individual items and are not impacted by your choice of Cyan Door Behavior:
80 Entrance) 80 Entrance)
81- The eye painting near the yellow color hallway in Daedalus (Daedalus - Eye 81- The eye painting near the yellow color hallway in Daedalus (Daedalus - Eye
82 Painting) 82 Painting)
83- The Red I room in The Repetitive (The Repetitive - Anti Collectable Room)
83 84
84Additionally, when control center color shuffle is enabled, the orange door in 85Additionally, when control center color shuffle is enabled, the orange door in
85The Unkempt (which ordinarily doubles as a cyan door) opens upon receiving the 86The Unkempt (which ordinarily doubles as a cyan door) opens upon receiving the
diff --git a/client/Archipelago/player.gd b/client/Archipelago/player.gd index 9de3e07..c8ef320 100644 --- a/client/Archipelago/player.gd +++ b/client/Archipelago/player.gd
@@ -68,6 +68,9 @@ func _ready():
68 68
69 locationListener.senders.append(NodePath("../" + khl.name)) 69 locationListener.senders.append(NodePath("../" + khl.name))
70 70
71 if door.has_complete_at():
72 locationListener.complete_at = door.get_complete_at()
73
71 get_parent().add_child.call_deferred(locationListener) 74 get_parent().add_child.call_deferred(locationListener)
72 75
73 # Set up letter locations. 76 # Set up letter locations.
diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 5818f2d..89d9873 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md
@@ -1,5 +1,15 @@
1# lingo2-archipelago Client Releases 1# lingo2-archipelago Client Releases
2 2
3## v3.3 - 2025-09-12
4
5- Fixed issue downloading large datapackages (such as TUNIC's).
6- Connection failures now show error messages.
7
8Download:
9[lingo2-archipelago-client-v3.3.zip](https://files.fourisland.com/releases/lingo2-archipelago/client/lingo2-archipelago-client-v3.3.zip)<br/>
10Source:
11[v3.3](https://code.fourisland.com/lingo2-archipelago/tag/?h=client-v3.3)
12
3## v3.2 - 2025-09-12 13## v3.2 - 2025-09-12
4 14
5- Initial release for testing. Features include door shuffle, letter shuffle, 15- Initial release for testing. Features include door shuffle, letter shuffle,
diff --git a/data/maps/the_great/doors.txtpb b/data/maps/the_great/doors.txtpb index 5d0e90d..abbbc11 100644 --- a/data/maps/the_great/doors.txtpb +++ b/data/maps/the_great/doors.txtpb
@@ -66,7 +66,7 @@ doors {
66doors { 66doors {
67 name: "Control Center Red Door" 67 name: "Control Center Red Door"
68 type: CONTROL_CENTER_COLOR 68 type: CONTROL_CENTER_COLOR
69 receivers: "Components/Doors/Gates/Gate" 69 receivers: "Components/Doors/entry_18"
70 control_center_color: "red" 70 control_center_color: "red"
71} 71}
72doors { 72doors {