summaryrefslogtreecommitdiff
path: root/lib/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-07-30 18:46:58 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-07-30 18:46:58 +0200
commit6367bb1e0ec7ecc03ebfc9370a096c2a2c18adae (patch)
tree8f8cca47b27f8ad4d4d4d87863824a3032e46a49 /lib/rbot
parent7b536059aaf8fead11667d6ecf79d57b69271f6a (diff)
* nick is handled by config, not basics
Diffstat (limited to 'lib/rbot')
-rw-r--r--lib/rbot/core/basics.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/rbot/core/basics.rb b/lib/rbot/core/basics.rb
index 33614f36..fd7a085f 100644
--- a/lib/rbot/core/basics.rb
+++ b/lib/rbot/core/basics.rb
@@ -113,8 +113,6 @@ class BasicsModule < CoreBotModule
_("part <channel> => part channel <channel>")
when "hide"
_("hide => part all channels")
- when "nick"
- _("nick <nick> => attempt to change nick to <nick>")
when "say"
_("say <channel>|<nick> <message> => say <message> to <channel> or in private message to <nick>")
when "action"
@@ -132,7 +130,7 @@ class BasicsModule < CoreBotModule
# when "hello"
# return "hello|hi|hey|yo [#{@bot.myself}] => greet the bot"
else
- _("%{name}: quit, restart, join, part, hide, save, nick, say, action, topic, quiet, talk, ping, mode") % {:name=>name}
+ _("%{name}: quit, restart, join, part, hide, save, say, action, topic, quiet, talk, ping, mode") % {:name=>name}
#, botsnack, hello
end
end