fix max size to not exceed 512 bytes

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

View file

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

View file

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