From 0629a967c034dda63825302c634e863a054865d3 Mon Sep 17 00:00:00 2001
From: Nick12 <abramlujan@gmail.com>
Date: Thu, 15 Aug 2019 21:28:36 +0000
Subject: [PATCH] Increase max bytes per chat message

---
 common/src/msg/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/src/msg/mod.rs b/common/src/msg/mod.rs
index f3230d50a9..09bdae25bb 100644
--- a/common/src/msg/mod.rs
+++ b/common/src/msg/mod.rs
@@ -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,