Parenthesise protocol constants (anon5)

master
HimbeerserverDE 2021-09-13 10:45:59 +02:00
parent 1c3e21ace6
commit 9f5a9f8077
No known key found for this signature in database
GPG Key ID: 1A651504791E6A8B
1 changed files with 8 additions and 6 deletions

View File

@ -4,9 +4,11 @@ It also provides an API for plugins.
*/
package proxy
const latestSerializeVer = 28
const latestProtoVer = 39
const versionString = "5.5.0-dev-83a7b48bb"
const maxPlayerNameLen = 20
const playerNameChars = "^[a-zA-Z0-9-_]+$"
const bytesPerMediaBunch = 5000
const (
latestSerializeVer = 28
latestProtoVer = 39
versionString = "5.5.0-dev-83a7b48bb"
maxPlayerNameLen = 20
playerNameChars = "^[a-zA-Z0-9-_]+$"
bytesPerMediaBunch = 5000
)