diff --git a/proxy.go b/proxy.go index c3da9d4..cde7cee 100644 --- a/proxy.go +++ b/proxy.go @@ -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 +)