From 7d669032d40cb887f7130d4cb36a72865155f87f Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Wed, 22 Apr 2015 13:20:58 +0200 Subject: Chat history size 10 -> 40, for sanity reasons --- chatserver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3-54-g00ecf