diff options
author | tomsmeding <hallo@tomsmeding.nl> | 2015-04-22 14:03:35 +0200 |
---|---|---|
committer | tomsmeding <hallo@tomsmeding.nl> | 2015-04-22 14:03:35 +0200 |
commit | b092d7729ee6fec2c7ad1f6a849bca750400d746 (patch) | |
tree | 80e117dfdb7cd9a8e577bd17e2f9ec9ab1f2b685 | |
parent | 5fb63f403568280e4395e5c1ea11fa2d37d520ea (diff) | |
parent | 7d669032d40cb887f7130d4cb36a72865155f87f (diff) |
Merge branch 'master' of github.com:tomsmeding/chatserver
Accidentally committed the history LENGTH change in another copy of the repo...
-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; |