summaryrefslogtreecommitdiff
path: root/data/rbot/plugins
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-07-05 00:10:56 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-07-05 00:10:56 +0200
commite775f4cd36d601f14bcaaa7d37655fcae58feb1c (patch)
tree525c6b3da573824ee1530956281211417c704f5f /data/rbot/plugins
parentc272b3fa7c1cdc5765987589270fc1ad366b8694 (diff)
lastfm plugin: quoting sux, bolding rox
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r--data/rbot/plugins/lastfm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/lastfm.rb b/data/rbot/plugins/lastfm.rb
index 44a265bd..74582761 100644
--- a/data/rbot/plugins/lastfm.rb
+++ b/data/rbot/plugins/lastfm.rb
@@ -277,7 +277,7 @@ class LastFmPlugin < Plugin
playcount = first.elements["stats"].elements["plays"].text
listeners = first.elements["stats"].elements["listeners"].text
summary = first.elements["bio"].elements["summary"].text
- m.reply _("\"%{a}\" has been played %{c} times and is being listened to by %{l} people.") % {:a => artist, :c => playcount, :l => listeners}
+ m.reply _("%{b}%{a}%{b} has been played %{c} times and is being listened to by %{l} people.") % {:b => Bold, :a => artist, :c => playcount, :l => listeners}
m.reply summary.ircify_html
end