diff options
-rwxr-xr-x | chatserver.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chatserver.js b/chatserver.js index 0d9a30c..d665e2c 100755 --- a/chatserver.js +++ b/chatserver.js @@ -16,7 +16,7 @@ function uniqid(){ } function lobby_create(lname){ - lobbies.push({id:uniqid(),name:lname,users:[],history:new CircularBuffer(10)}); + lobbies.push({id:uniqid(),name:lname,users:[],history:new CircularBuffer(40)}); } var __do_persist_lobbies_timeout=null; |