X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Frbot%2Fcore%2Fbasics.rb;fp=lib%2Frbot%2Fcore%2Fbasics.rb;h=de48a5754594feb5e09ffead7c3017e9911c3c1c;hb=c11d73206b365dfb04d1c5097ab36791995a593d;hp=832cbb25e73bf79ff1a080ab29a65ad5857ced4f;hpb=a993d1c358e24ab85621568c10411c5496e2dea8;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/lib/rbot/core/basics.rb b/lib/rbot/core/basics.rb index 832cbb25..de48a575 100644 --- a/lib/rbot/core/basics.rb +++ b/lib/rbot/core/basics.rb @@ -73,6 +73,10 @@ class BasicsModule < CoreBotModule @bot.restart param[:msg].to_s end + def bot_reconnect(m, param) + @bot.reconnect param[:msg].to_s + end + def bot_hide(m, param) @bot.join 0 end @@ -133,6 +137,8 @@ class BasicsModule < CoreBotModule _("quit [] => quit IRC with message ") when "restart" _("restart => completely stop and restart the bot (including reconnect)") + when "reconnect" + _("reconnect => ask the bot to disconnect and then connect again") when "join" _("join [] => join channel with secret key if specified. #{@bot.myself} also responds to invites if you have the required access level") when "part" @@ -172,6 +178,10 @@ basics.map "restart *msg", :action => 'bot_restart', :defaults => { :msg => nil }, :auth_path => 'quit' +basics.map "reconnect *msg", + :action => 'bot_reconnect', + :defaults => { :msg => nil }, + :auth_path => 'quit' basics.map "quiet [in] [:where]", :action => 'bot_quiet',