diff options
author | Casey Link <unnamedrambler@gmail.com> | 2008-10-27 15:53:26 -0400 |
---|---|---|
committer | Casey Link <unnamedrambler@gmail.com> | 2008-10-27 16:29:37 -0400 |
commit | 41ea4232df0ed0b3f922b0476444ca8e38f3301f (patch) | |
tree | 492d4db3136a27fe2226a48c0065fb3382a029f7 /data/rbot/plugins/lastfm.rb | |
parent | 6188a50d4ba6171481224bc897b45facd286f037 (diff) |
* (lastfm) change the interface for associating an irc nick with a lastfm user. this way it is more intuitive.
Diffstat (limited to 'data/rbot/plugins/lastfm.rb')
-rw-r--r-- | data/rbot/plugins/lastfm.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/data/rbot/plugins/lastfm.rb b/data/rbot/plugins/lastfm.rb index 0c40701c..d6a3eeea 100644 --- a/data/rbot/plugins/lastfm.rb +++ b/data/rbot/plugins/lastfm.rb @@ -82,7 +82,7 @@ class LastFmPlugin < Plugin when :now, :np _("lastfm now [<user>] => show the now playing track from last.fm. np [<user>] does the same.") when :set - _("lastfm set nick <user> => associate your current irc nick with a last.fm user. lastfm set verb <present> <past> => set your preferred now playing verb. default \"listening\" and \"listened\".") + _("lastfm set user <user> => associate your current irc nick with a last.fm user. lastfm set verb <present> <past> => set your preferred now playing verb. default \"listening\" and \"listened\".") when :who _("lastfm who [<nick>] => show who <nick> is at last.fm. if <nick> is empty, show who you are at lastfm.") when :compare @@ -422,6 +422,8 @@ plugin.map 'lastfm artist *artist', :action => :find_artist, :thread => true plugin.map 'lastfm album *album [by *artist]', :action => :find_album plugin.map 'lastfm track *track', :action => :find_track, :thread => true plugin.map 'lastfm set nick :who', :action => :set_user, :thread => true +plugin.map 'lastfm set user :who', :action => :set_user, :thread => true +plugin.map 'lastfm set username :who', :action => :set_user, :thread => true plugin.map 'lastfm set verb :present :past', :action => :set_verb, :thread => true plugin.map 'lastfm who :who', :action => :get_user, :thread => true plugin.map 'lastfm who', :action => :get_user, :thread => true |