Increase max bytes per chat message

This commit is contained in:
Nick12 2019-08-15 21:28:36 +00:00 committed by Acrimon
parent 6e4d556073
commit e8340d88af

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,