From c50e20d7bb2a90957355ce8cc85d5a58c8d0a15d Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Sat, 11 Feb 2012 16:27:30 +0000 Subject: [PATCH] Remove karma and user from default modules --- run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.js b/run.js index 8cdc538..b8c6966 100644 --- a/run.js +++ b/run.js @@ -13,7 +13,7 @@ var DBot = function(timers) { this.nickserv = this.config.nickserv || 'zippy'; this.server = this.config.server || 'elara.ivixor.net'; this.port = this.config.port || 6667; - this.moduleNames = this.config.modules || [ 'js', 'admin', 'karma', 'kick', 'modehate', 'quotes', 'puns', 'spelling', 'user', 'web', 'youare' ]; + this.moduleNames = this.config.modules || [ 'js', 'admin', 'kick', 'modehate', 'quotes', 'puns', 'spelling', 'web', 'youare' ]; this.timers = timers.create();