JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
set game timeout to 3 hours
[peach-cgt.git] / server.coffee
index f0ebddf..44084e8 100644 (file)
@@ -26,7 +26,7 @@ model = require './common.coffee'
 
 games = {}
 max_concurrent_games = 50
-max_game_idle = 2 * 60 * 60 * 1000 # two hours (in miliseconds)
+max_game_idle = 3 * 60 * 60 * 1000 # three hours (in miliseconds)
 
 # timeout function with args in convenient order
 timeout = (ms, func) -> setTimeout func, ms