Don't let through long nicknames

This commit is contained in:
DBotThePony 2024-05-16 22:25:26 +07:00
parent 19324c6247
commit 16ccb84d3b
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -493,7 +493,7 @@ sealed class StarboundServer(val root: File) : BlockableEventLoop("Server thread
synchronized(occupiedNicknames) {
var name = name
if (name.lowercase() == "server" || name.isBlank()) {
if (name.lowercase() == "server" || name.isBlank() || name.length >= 32) {
name = alternative
}