Skip to content
This repository has been archived by the owner on Nov 11, 2020. It is now read-only.

Commit

Permalink
Note to self: read code before committing.
Browse files Browse the repository at this point in the history
  • Loading branch information
AKPWebDesign committed May 6, 2016
1 parent 264fb4e commit 3a6f9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ IRCJoinMsg.prototype.handleJoin = function (chan, nick, id, client) {
global.logger.silly(`${this._pluginName}: Received join event.`);
if(this._config.channels[`${id}:${chan}`]) {
var msg = this._config.channels[`${id}:${chan}`].replace(/\$user/g, nick);
client.say(channel, msg);
client.say(chan, msg);
}
};

Expand Down

0 comments on commit 3a6f9b7

Please sign in to comment.