3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-31 09:38:06 +02:00

Fix inverted booleans in MessageUtils.isTooLong

Dieser Commit ist enthalten in:
Artuto 2020-04-15 22:50:02 -05:00
Ursprung e96863e941
Commit 508d56ffc8

Datei anzeigen

@ -300,9 +300,9 @@ public class MessageUtils {
if (message.length() > 256) {
// TODO: Add Geyser localization and translate this based on language
session.sendMessage("Your message is bigger than 256 characters (" + message.length() + ") so it has not been sent.");
return false;
return true;
}
return true;
return false;
}
}