summary refs log tree commit diff stats
path: root/proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto')
-rw-r--r--proto/data.proto2
-rw-r--r--proto/human.proto4
2 files changed, 6 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index 9cdf5fd..855c28c 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -84,6 +84,8 @@ message Connection {
84 uint64 painting = 5; 84 uint64 painting = 5;
85 ProxyIdentifier panel = 6; 85 ProxyIdentifier panel = 6;
86 } 86 }
87
88 optional bool roof_access = 7;
87} 89}
88 90
89message Door { 91message Door {
diff --git a/proto/human.proto b/proto/human.proto index e0378cc..205b867 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -62,6 +62,10 @@ message HumanConnection {
62 62
63 optional bool oneway = 3; 63 optional bool oneway = 3;
64 optional DoorIdentifier door = 4; 64 optional DoorIdentifier door = 4;
65
66 // If true, this connection will only be logically allowed if the Daedalus
67 // Roof Access option is enabled.
68 optional bool roof_access = 7;
65} 69}
66 70
67message HumanConnections { 71message HumanConnections {