From c11d73206b365dfb04d1c5097ab36791995a593d Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Thu, 13 Aug 2009 02:17:15 +0200 Subject: basics: UI reconnect command --- lib/rbot/core/basics.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib') 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', -- cgit v1.2.3