Increase max bytes per chat message

This commit is contained in:
Nick12 2019-08-15 21:28:36 +00:00 committed by Acrimon
parent c6e66fb2e1
commit 0629a967c0

View File

@ -17,7 +17,7 @@ pub enum ClientState {
Character,
}
pub const MAX_BYTES_CHAT_MSG: usize = 80;
pub const MAX_BYTES_CHAT_MSG: usize = 256;
pub enum ChatMsgValidationError {
TooLong,