diff options
author | Raine Virta <rane@kapsi.fi> | 2009-02-22 18:36:00 +0200 |
---|---|---|
committer | Raine Virta <rane@kapsi.fi> | 2009-02-26 01:09:20 +0200 |
commit | cae7568bdfb07be564562edb49343c74762c5daa (patch) | |
tree | 1fd88487fa728357a1d6b12ff414e156a636bf32 | |
parent | 36dba6af1f2d19c89e144b46acfbca8e1a40b756 (diff) |
seen: add double quotes around user written messages
-rw-r--r-- | data/rbot/plugins/seen.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rbot/plugins/seen.rb b/data/rbot/plugins/seen.rb index 12d0fae2..ed308ac9 100644 --- a/data/rbot/plugins/seen.rb +++ b/data/rbot/plugins/seen.rb @@ -92,7 +92,7 @@ class SeenPlugin < Plugin case saw.type.to_sym when :PUBLIC - ret << "saying #{saw.message}" + ret << "saying \"#{saw.message}\"" when :ACTION ret << "doing #{saw.nick} #{saw.message}" when :NICK @@ -104,7 +104,7 @@ class SeenPlugin < Plugin when :QUIT ret << "quitting IRC (#{saw.message})" when :TOPIC - ret << "changing the topic of #{saw.where} to #{saw.message}" + ret << "changing the topic of #{saw.where} to \"#{saw.message}\"" end case saw.type.to_sym |