about summary refs log tree commit diff stats
path: root/proto
diff options
context:
space:
mode:
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;