From cae7568bdfb07be564562edb49343c74762c5daa Mon Sep 17 00:00:00 2001 From: Raine Virta Date: Sun, 22 Feb 2009 18:36:00 +0200 Subject: seen: add double quotes around user written messages --- data/rbot/plugins/seen.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data') 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 -- cgit v1.2.3