about summary refs log tree commit diff stats
path: root/proto
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-28 13:26:10 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-28 13:26:10 -0400
commit907a59f52c14af709599d8da8b37285ae6794f59 (patch)
tree73e7ec7082a8b2fc769caf7f32c0a860f931babc /proto
parent7b0af7f15874e023ddc2653db225f6e358d81214 (diff)
downloadlingo2-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.proto1
-rw-r--r--proto/human.proto1
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
151message HumanPort { 151message 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;