From d432b9e11936eebb379c6f589879dd8d40ac7163 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Wed, 22 Aug 2007 21:52:18 +0000 Subject: [PATCH] bash plugin: a nick is such only if it's followed by a space --- data/rbot/plugins/bash.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/rbot/plugins/bash.rb b/data/rbot/plugins/bash.rb index 4bb1378a..cb33a4d4 100644 --- a/data/rbot/plugins/bash.rb +++ b/data/rbot/plugins/bash.rb @@ -39,7 +39,7 @@ class ::BashQuote text = String.new @text.each_line { |l| debug "line: #{l.inspect}" - cur_nick = l.match(/^\s*(<.*?>|\(.*?\)|.*?:)/)[1] rescue nil + cur_nick = l.match(/^\s*(<.*?>|\(.*?\)|.*?:)\s/)[1] rescue nil debug "nick: #{cur_nick.inspect}; last: #{last_nick.inspect}" if cur_nick and cur_nick == last_nick text << l.sub(cur_nick,"") -- 2.39.5