forked from GitHub/dbot
forgot a bind.....
This commit is contained in:
parent
5cf79312f4
commit
ecd30eb896
@ -138,7 +138,7 @@ var users = function(dbot) {
|
|||||||
done(user);
|
done(user);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}.bind(this));
|
||||||
}.bind(this);
|
}.bind(this);
|
||||||
var checkChannelUsers = function(done) {
|
var checkChannelUsers = function(done) {
|
||||||
var needsUpdating = false;
|
var needsUpdating = false;
|
||||||
|
15
run.js
15
run.js
@ -103,6 +103,21 @@ DBot.prototype.t = function(string, formatData) {
|
|||||||
|
|
||||||
if(_.has(this.strings[string], lang)) {
|
if(_.has(this.strings[string], lang)) {
|
||||||
var module = this.stringMap[string];
|
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);
|
formattedString = this.strings[string][lang].format(formatData);
|
||||||
if(this.config.modules[module] && this.config.modules[module].outputPrefix) {
|
if(this.config.modules[module] && this.config.modules[module].outputPrefix) {
|
||||||
formattedString = '[' + this.config.modules[module].outputPrefix + '] ' +
|
formattedString = '[' + this.config.modules[module].outputPrefix + '] ' +
|
||||||
|
Loading…
Reference in New Issue
Block a user