From 94430e52a11272ca2f7be62717b87c82072c7b77 Mon Sep 17 00:00:00 2001 From: Psychedelic Squid Date: Mon, 12 Mar 2012 13:07:24 +0000 Subject: [PATCH] sessionData hash for storage which should explicitly not survive beyond full restarts (as opposed to reloading modules). --- run.js | 1 + 1 file changed, 1 insertion(+) diff --git a/run.js b/run.js index f9b5927..9da733a 100644 --- a/run.js +++ b/run.js @@ -49,6 +49,7 @@ var DBot = function(timers) { this.port = this.config.port || 6667; this.webPort = this.config.webPort || 443; this.moduleNames = this.config.modules || [ 'command', 'js', 'admin', 'kick', 'modehate', 'quotes', 'puns', 'spelling', 'web', 'youare' ]; + this.sessionData = {}; this.timers = timers.create();