diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-13 11:05:13 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-13 11:05:13 -0400 |
commit | 3445e5ace4bc5349000cb30b27b4617b48ec4119 (patch) | |
tree | 49e964be62a3683ed774f47dba4e6485c0bb406b /proto | |
parent | fd7007157f9c9b7f8b12adc6aa601b4a5d89df05 (diff) | |
download | lingo2-archipelago-3445e5ace4bc5349000cb30b27b4617b48ec4119.tar.gz lingo2-archipelago-3445e5ace4bc5349000cb30b27b4617b48ec4119.tar.bz2 lingo2-archipelago-3445e5ace4bc5349000cb30b27b4617b48ec4119.zip |
Add anti-collectable location
Diffstat (limited to 'proto')
-rw-r--r-- | proto/data.proto | 1 | ||||
-rw-r--r-- | proto/human.proto | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index bf216b9..7a1918a 100644 --- a/proto/data.proto +++ b/proto/data.proto | |||
@@ -130,6 +130,7 @@ message Door { | |||
130 | repeated uint64 doors = 15; | 130 | repeated uint64 doors = 15; |
131 | repeated uint64 endings = 16; | 131 | repeated uint64 endings = 16; |
132 | optional bool double_letters = 18; | 132 | optional bool double_letters = 18; |
133 | repeated string senders = 19; | ||
133 | 134 | ||
134 | optional DoorType type = 8; | 135 | optional DoorType type = 8; |
135 | 136 | ||
diff --git a/proto/human.proto b/proto/human.proto index 615ac86..f9517bd 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -96,6 +96,10 @@ message HumanDoor { | |||
96 | repeated string endings = 13; | 96 | repeated string endings = 13; |
97 | optional bool double_letters = 15; | 97 | optional bool double_letters = 15; |
98 | 98 | ||
99 | // Sender nodes to be added to the list of requirements for triggering the | ||
100 | // location. Only for senders that have no logic requirements. | ||
101 | repeated string senders = 16; | ||
102 | |||
99 | optional DoorType type = 4; | 103 | optional DoorType type = 4; |
100 | optional string location_room = 5; | 104 | optional string location_room = 5; |
101 | optional string location_name = 14; | 105 | optional string location_name = 14; |