add name and description to Location

This commit is contained in:
Sacha Weatherstone 2022-08-09 12:06:15 +10:00
parent 7ea5bd3922
commit 503219c38c
No known key found for this signature in database
GPG key ID: 7AB2D7E206124B31
2 changed files with 14 additions and 1 deletions

View file

@ -44,4 +44,7 @@
#This value may want to be a few bytes smaller to compensate for the parent fields.
*Compressed.data max_size:237
*Compressed.data max_size:237
*Location.name max_size:40
*Location.description max_size:160

View file

@ -646,6 +646,16 @@ message Location {
*/
bool locked = 5;
/*
* Name of the location - max 40 chars
*/
string name = 6;
/**
* Description of the location - max 160 chars
*/
string description = 7;
}
/*