From 139c7252dffad17f2f3345fa1aa41f673fcfea03 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 22 Oct 2025 17:52:20 -0400 Subject: Added icarus --- proto/data.proto | 6 ++++++ proto/human.proto | 1 + 2 files changed, 7 insertions(+) (limited to 'proto') diff --git a/proto/data.proto b/proto/data.proto index 4b3cf1f..38b8822 100644 --- a/proto/data.proto +++ b/proto/data.proto @@ -52,6 +52,11 @@ enum DoorGroupType { SHUFFLE_GROUP = 4; } +enum MapType { + NORMAL_MAP = 0; + ICARUS = 1; +} + enum AxisDirection { AXIS_DIRECTION_UNKNOWN = 0; @@ -266,6 +271,7 @@ message Map { optional string name = 2; optional string display_name = 3; optional uint64 worldport_entrance = 4; + optional MapType type = 5; } message Progressive { diff --git a/proto/human.proto b/proto/human.proto index ee59bab..41fce45 100644 --- a/proto/human.proto +++ b/proto/human.proto @@ -223,6 +223,7 @@ message HumanMap { optional string display_name = 1; repeated string excluded_nodes = 2; optional PortIdentifier worldport_entrance = 3; + optional MapType type = 4; } message HumanProgressive { -- cgit 1.4.1