diff options
Diffstat (limited to 'proto')
-rw-r--r-- | proto/data.proto | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/data.proto b/proto/data.proto index 211a7ac..93f2227 100644 --- a/proto/data.proto +++ b/proto/data.proto | |||
@@ -126,7 +126,7 @@ message PanelData { | |||
126 | optional uint64 required_room = 11; | 126 | optional uint64 required_room = 11; |
127 | } | 127 | } |
128 | 128 | ||
129 | message Painting { | 129 | message PaintingData { |
130 | optional uint64 id = 1; | 130 | optional uint64 id = 1; |
131 | optional uint64 room_id = 2; | 131 | optional uint64 room_id = 2; |
132 | optional string name = 9; | 132 | optional string name = 9; |
@@ -155,7 +155,7 @@ message Port { | |||
155 | optional uint64 required_door = 6; | 155 | optional uint64 required_door = 6; |
156 | } | 156 | } |
157 | 157 | ||
158 | message Keyholder { | 158 | message KeyholderData { |
159 | optional uint64 id = 1; | 159 | optional uint64 id = 1; |
160 | optional uint64 room_id = 2; | 160 | optional uint64 room_id = 2; |
161 | 161 | ||
@@ -220,9 +220,9 @@ message AllObjects { | |||
220 | repeated Room rooms = 1; | 220 | repeated Room rooms = 1; |
221 | repeated Door doors = 2; | 221 | repeated Door doors = 2; |
222 | repeated PanelData panels = 3; | 222 | repeated PanelData panels = 3; |
223 | repeated Painting paintings = 4; | 223 | repeated PaintingData paintings = 4; |
224 | repeated Port ports = 5; | 224 | repeated Port ports = 5; |
225 | repeated Keyholder keyholders = 11; | 225 | repeated KeyholderData keyholders = 11; |
226 | repeated Letter letters = 9; | 226 | repeated Letter letters = 9; |
227 | repeated Mastery masteries = 10; | 227 | repeated Mastery masteries = 10; |
228 | repeated Ending endings = 12; | 228 | repeated Ending endings = 12; |