1 class AutoRejoinPlugin < Plugin
2 def help(plugin, topic="")
3 "performs an automatic rejoin if the bot is kicked from a channel"
7 @bot.timer.add_once(10, m) {|m|
9 @bot.say m.channel, @bot.lang.get("insult") % m.sourcenick
15 plugin = AutoRejoinPlugin.new
16 plugin.register("autorejoin")