diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-03-20 16:02:43 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-03-20 16:16:03 +0100 |
commit | d12149d4c3b1c624e6db7c150b98031b271924ad (patch) | |
tree | a260b8a03d9f57c0f1758a4578ade24a986bf435 | |
parent | 7d4ca441c9df2967629f5d286d3e407381b97d77 (diff) |
seen: keep nick in ACTION message
-rw-r--r-- | data/rbot/plugins/seen.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/seen.rb b/data/rbot/plugins/seen.rb index 8889d26b..babf7484 100644 --- a/data/rbot/plugins/seen.rb +++ b/data/rbot/plugins/seen.rb @@ -94,7 +94,7 @@ class SeenPlugin < Plugin when :PUBLIC _("saying \"%{message}\"") when :ACTION - _("doing *%{message}*") + _("doing *%{nick} %{message}*") end % { :nick => saw.nick, :message => before.message |