Fix inverted booleans in MessageUtils.isTooLong

This commit is contained in:
Artuto 2020-04-15 22:50:02 -05:00
parent e96863e941
commit 508d56ffc8
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}