@@ -58,6 +58,8 @@ Rapido.prototype.onRename = function(oldNick, newNick) {
}
Rapido.prototype.onMessage = function(user, text) {
+ if (this.config.DISABLED)
+ return;
this.onMessageInternal(user, this.users[user.toLowerCase()], text.trimEnd().replace(/\s+/, ' '));