diff --git a/run.js b/run.js index e8ad424..4290f25 100644 --- a/run.js +++ b/run.js @@ -104,20 +104,6 @@ DBot.prototype.t = function(string, formatData) { if(_.has(this.strings[string], lang)) { var module = this.stringMap[string]; - // TODO: Create per-server support - /*if(this.config.enableColours) { - var colours = this.config.colours; - _.each(formatData, function(str, key) { - if(_.has(colours, key)) { - if(key == 'channel' && _.has(colours['channel'], key)) { - - } else { - str = colours[key] + str + '\u000f'; - } - } - }); - }*/ - formattedString = this.strings[string][lang].format(formatData); if(this.config.modules[module] && this.config.modules[module].outputPrefix) { formattedString = '[' + this.config.modules[module].outputPrefix + '] ' +