mirror of
https://github.com/reality/dbot.git
synced 2024-11-24 04:49:25 +01:00
commit
7f8209544e
@ -10,11 +10,11 @@ var udp = function(dbot) {
|
||||
server.on("message", function(msg, msginfo) {
|
||||
var message = msg.toString();
|
||||
console.log(message);
|
||||
if (msginfo.address == dbot.config.udp.address) {
|
||||
dbot.say(dbot.config.udp.server, dbot.config.udp.channel, message);
|
||||
if (msginfo.address == this.config.address) {
|
||||
dbot.say(this.config.server, this.config.channel, message);
|
||||
}
|
||||
});
|
||||
server.bind(dbot.config.udp.port);
|
||||
}.bind(this));
|
||||
server.bind(this.config.port);
|
||||
};
|
||||
|
||||
exports.fetch = function(dbot) {
|
||||
|
Loading…
Reference in New Issue
Block a user