mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-11-01 01:19:26 +00:00
* Updated the comment as I forgot that * Corrected the max limited based on updated issue from 250 to 256
This commit is contained in:
parent
5d7aa8913b
commit
30a6b7a442
|
@ -51,10 +51,10 @@ public class ChatManager extends FreedomService
|
|||
// Strip color from messages
|
||||
message = ChatColor.stripColor(message);
|
||||
|
||||
// Truncate messages that are too long - 100 characters is vanilla client max
|
||||
if (message.length() > 100)
|
||||
// Truncate messages that are too long - 256 characters is vanilla client max
|
||||
if (message.length() > 256)
|
||||
{
|
||||
message = message.substring(0, 100);
|
||||
message = message.substring(0, 256);
|
||||
FSync.playerMsg(player, "Message was shortened because it was too long to send.");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue