aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-04-22 14:03:35 +0200
committertomsmeding <hallo@tomsmeding.nl>2015-04-22 14:03:35 +0200
commitb092d7729ee6fec2c7ad1f6a849bca750400d746 (patch)
tree80e117dfdb7cd9a8e577bd17e2f9ec9ab1f2b685
parent5fb63f403568280e4395e5c1ea11fa2d37d520ea (diff)
parent7d669032d40cb887f7130d4cb36a72865155f87f (diff)
Merge branch 'master' of github.com:tomsmeding/chatserver
Accidentally committed the history LENGTH change in another copy of the repo...
-rwxr-xr-xchatserver.js2
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;