diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 14:11:23 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 14:11:23 -0400 |
commit | 57a08a321bb1054107afd7b91bc6c77cba5abf32 (patch) | |
tree | 29675215fcdaa37cba6ee20fd23b179bc635b267 /proto | |
parent | 0aa1b7c005edc97323f3e1cbbe591d9064a73475 (diff) | |
download | lingo2-archipelago-57a08a321bb1054107afd7b91bc6c77cba5abf32.tar.gz lingo2-archipelago-57a08a321bb1054107afd7b91bc6c77cba5abf32.tar.bz2 lingo2-archipelago-57a08a321bb1054107afd7b91bc6c77cba5abf32.zip |
Added lavender cubes logic
Diffstat (limited to 'proto')
-rw-r--r-- | proto/data.proto | 4 | ||||
-rw-r--r-- | proto/human.proto | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/proto/data.proto b/proto/data.proto index 24b98fe..014cbeb 100644 --- a/proto/data.proto +++ b/proto/data.proto | |||
@@ -44,6 +44,9 @@ enum DoorGroupType { | |||
44 | 44 | ||
45 | // Groups with this type become an item if cyan door behavior is set to item. | 45 | // Groups with this type become an item if cyan door behavior is set to item. |
46 | CYAN_DOORS = 3; | 46 | CYAN_DOORS = 3; |
47 | |||
48 | // Groups with this type always become an item if door shuffle is on. | ||
49 | SHUFFLE_GROUP = 4; | ||
47 | } | 50 | } |
48 | 51 | ||
49 | enum AxisDirection { | 52 | enum AxisDirection { |
@@ -119,7 +122,6 @@ message Door { | |||
119 | optional uint64 complete_at = 12; | 122 | optional uint64 complete_at = 12; |
120 | 123 | ||
121 | optional string control_center_color = 6; | 124 | optional string control_center_color = 6; |
122 | repeated string switches = 7; | ||
123 | repeated KeyholderAnswer keyholders = 13; | 125 | repeated KeyholderAnswer keyholders = 13; |
124 | repeated uint64 rooms = 14; | 126 | repeated uint64 rooms = 14; |
125 | repeated uint64 doors = 15; | 127 | repeated uint64 doors = 15; |
diff --git a/proto/human.proto b/proto/human.proto index 89fd076..d48f687 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -86,7 +86,6 @@ message HumanDoor { | |||
86 | optional uint64 complete_at = 9; | 86 | optional uint64 complete_at = 9; |
87 | 87 | ||
88 | optional string control_center_color = 6; | 88 | optional string control_center_color = 6; |
89 | repeated string switches = 7; | ||
90 | repeated KeyholderIdentifier keyholders = 10; | 89 | repeated KeyholderIdentifier keyholders = 10; |
91 | repeated RoomIdentifier rooms = 11; | 90 | repeated RoomIdentifier rooms = 11; |
92 | repeated DoorIdentifier doors = 12; | 91 | repeated DoorIdentifier doors = 12; |