From fa2c104a460bcb5b9b78a8fb7c3727231fd22ffd Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 30 Sep 2025 23:32:08 -0400 Subject: Fix vanilla-only oneway door in The Repetitive --- proto/data.proto | 1 + proto/human.proto | 3 +++ 2 files changed, 4 insertions(+) (limited to 'proto') 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 { optional bool roof_access = 7; optional bool purple_ending = 8; optional bool cyan_ending = 9; + optional bool vanilla_only = 10; } 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 { // This means that the connection should additionally require all cyan letters // when the Strict Cyan Ending option is on. optional bool cyan_ending = 10; + + // This means that the connection only exists when doors are not shuffled. + optional bool vanilla_only = 11; } message HumanConnections { -- cgit 1.4.1