Remove karma and user from default modules

This commit is contained in:
Luke Slater 2012-02-11 16:27:30 +00:00
parent d271861f65
commit c50e20d7bb

2
run.js
View File

@ -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();