diff options
Diffstat (limited to 'proto')
-rw-r--r-- | proto/data.proto | 1 | ||||
-rw-r--r-- | proto/human.proto | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index 808198e..d79f47d 100644 --- a/proto/data.proto +++ b/proto/data.proto | |||
@@ -123,6 +123,7 @@ message Connection { | |||
123 | optional bool roof_access = 7; | 123 | optional bool roof_access = 7; |
124 | optional bool purple_ending = 8; | 124 | optional bool purple_ending = 8; |
125 | optional bool cyan_ending = 9; | 125 | optional bool cyan_ending = 9; |
126 | optional bool vanilla_only = 10; | ||
126 | } | 127 | } |
127 | 128 | ||
128 | message Door { | 129 | message Door { |
diff --git a/proto/human.proto b/proto/human.proto index 99c1fd7..8e7767a 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -78,6 +78,9 @@ message HumanConnection { | |||
78 | // This means that the connection should additionally require all cyan letters | 78 | // This means that the connection should additionally require all cyan letters |
79 | // when the Strict Cyan Ending option is on. | 79 | // when the Strict Cyan Ending option is on. |
80 | optional bool cyan_ending = 10; | 80 | optional bool cyan_ending = 10; |
81 | |||
82 | // This means that the connection only exists when doors are not shuffled. | ||
83 | optional bool vanilla_only = 11; | ||
81 | } | 84 | } |
82 | 85 | ||
83 | message HumanConnections { | 86 | message HumanConnections { |