diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-28 13:26:10 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-28 13:26:10 -0400 |
commit | 907a59f52c14af709599d8da8b37285ae6794f59 (patch) | |
tree | 73e7ec7082a8b2fc769caf7f32c0a860f931babc /proto | |
parent | 7b0af7f15874e023ddc2653db225f6e358d81214 (diff) | |
download | lingo2-archipelago-907a59f52c14af709599d8da8b37285ae6794f59.tar.gz lingo2-archipelago-907a59f52c14af709599d8da8b37285ae6794f59.tar.bz2 lingo2-archipelago-907a59f52c14af709599d8da8b37285ae6794f59.zip |
Added display names to ports
Diffstat (limited to 'proto')
-rw-r--r-- | proto/data.proto | 1 | ||||
-rw-r--r-- | proto/human.proto | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index bc3f669..044e32c 100644 --- a/proto/data.proto +++ b/proto/data.proto | |||
@@ -186,6 +186,7 @@ message Port { | |||
186 | optional uint64 room_id = 2; | 186 | optional uint64 room_id = 2; |
187 | optional string name = 3; | 187 | optional string name = 3; |
188 | 188 | ||
189 | optional string display_name = 10; | ||
189 | optional string path = 4; | 190 | optional string path = 4; |
190 | optional Vec3d destination = 5; | 191 | optional Vec3d destination = 5; |
191 | optional double rotation = 8; | 192 | optional double rotation = 8; |
diff --git a/proto/human.proto b/proto/human.proto index 748cf33..cd05191 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -150,6 +150,7 @@ message HumanPainting { | |||
150 | 150 | ||
151 | message HumanPort { | 151 | message HumanPort { |
152 | optional string name = 1; | 152 | optional string name = 1; |
153 | optional string display_name = 8; | ||
153 | optional string path = 2; | 154 | optional string path = 2; |
154 | 155 | ||
155 | optional bool no_shuffle = 7; | 156 | optional bool no_shuffle = 7; |