diff --git a/modules/udp/udp.js b/modules/udp/udp.js index 52caac6..6a4b5a7 100644 --- a/modules/udp/udp.js +++ b/modules/udp/udp.js @@ -14,7 +14,9 @@ var udp = function(dbot) { dbot.say(this.config.server, this.config.channel, message); } }.bind(this)); - server.bind(this.config.port); + this.onLoad = function() { + server.bind(this.config.port); + }.bind(this); }; exports.fetch = function(dbot) {