diff --git a/plugins/Scheduler.py b/plugins/Scheduler.py index 1335f3582..a3ded3655 100644 --- a/plugins/Scheduler.py +++ b/plugins/Scheduler.py @@ -117,7 +117,8 @@ class Scheduler(callbacks.Privmsg): return f = self._makeCommandFunction(irc, msg, command) id = schedule.addPeriodicEvent(f, seconds, name) - irc.reply(msg, conf.replySuccess) + # We don't reply because the command runs immediately. + # irc.reply(msg, conf.replySuccess) Class = Scheduler