about summary refs log tree commit diff stats
path: root/proto
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2026-02-06 13:45:01 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2026-02-06 13:45:01 -0500
commit27a1d63608cc370cdf491ae08c70c74f76956367 (patch)
tree3e1dbbfedc130e17eb8b0da575671e8f99c98a1e /proto
parentbde801d654ce6ddc41f703e55adfcc33b3f3104e (diff)
parent2a3916c1c58e033b06042d5d5413ea85cd94babf (diff)
downloadlingo2-archipelago-27a1d63608cc370cdf491ae08c70c74f76956367.tar.gz
lingo2-archipelago-27a1d63608cc370cdf491ae08c70c74f76956367.tar.bz2
lingo2-archipelago-27a1d63608cc370cdf491ae08c70c74f76956367.zip
Merge branch 'main' of fourisland.com:/srv/git/lingo2-archipelago
Diffstat (limited to 'proto')
-rw-r--r--proto/data.proto3
-rw-r--r--proto/human.proto2
2 files changed, 5 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index d7538da..3330666 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -288,6 +288,9 @@ message Map {
288 optional DaedalusOnlyMode daedalus_only_mode = 6; 288 optional DaedalusOnlyMode daedalus_only_mode = 6;
289 optional uint64 worldport_entrance = 4; 289 optional uint64 worldport_entrance = 4;
290 optional MapType type = 5; 290 optional MapType type = 5;
291
292 optional uint64 rte_room = 7;
293 optional uint64 rte_ap_id = 8;
291} 294}
292 295
293message Progressive { 296message Progressive {
diff --git a/proto/human.proto b/proto/human.proto index 39625d5..484369e 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -238,6 +238,7 @@ message HumanMap {
238 optional DaedalusOnlyMode daedalus_only_mode = 6; 238 optional DaedalusOnlyMode daedalus_only_mode = 6;
239 239
240 optional PortIdentifier worldport_entrance = 3; 240 optional PortIdentifier worldport_entrance = 3;
241 optional string rte_room = 7;
241 242
242 // These two fields are used by the validator and nothing else. excluded_nodes 243 // These two fields are used by the validator and nothing else. excluded_nodes
243 // are objects in the tscn that are intentionally not mentioned in the txtpb. 244 // are objects in the tscn that are intentionally not mentioned in the txtpb.
@@ -286,6 +287,7 @@ message IdMappings {
286 message MapIds { 287 message MapIds {
287 map<string, uint64> doors = 1; 288 map<string, uint64> doors = 1;
288 map<string, RoomIds> rooms = 2; 289 map<string, RoomIds> rooms = 2;
290 optional uint64 rte = 3;
289 } 291 }
290 292
291 map<string, MapIds> maps = 1; 293 map<string, MapIds> maps = 1;