diff options
Diffstat (limited to 'rbot/plugins/autorejoin.rb')
-rw-r--r-- | rbot/plugins/autorejoin.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rbot/plugins/autorejoin.rb b/rbot/plugins/autorejoin.rb index 03118f85..b5dd1ee1 100644 --- a/rbot/plugins/autorejoin.rb +++ b/rbot/plugins/autorejoin.rb @@ -4,8 +4,10 @@ class AutoRejoinPlugin < Plugin end def kick(m) if m.address? - @bot.join m.channel - @bot.say m.channel, @bot.lang.get("insult") % m.sourcenick + @bot.timer.add_onceu(10, m) {|m| + @bot.join m.channel + @bot.say m.channel, @bot.lang.get("insult") % m.sourcenick + } end end end |