From e1556de8aa3d4cd29db17908d3a14bbb133474bd Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sat, 27 Jan 2007 11:30:42 +0000 Subject: Since the new Irc framework the quotes plugin wasn't saving the full netmask of the submitter. Fix it --- data/rbot/plugins/quotes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/rbot') diff --git a/data/rbot/plugins/quotes.rb b/data/rbot/plugins/quotes.rb index aae70592..6851b65f 100644 --- a/data/rbot/plugins/quotes.rb +++ b/data/rbot/plugins/quotes.rb @@ -49,7 +49,7 @@ class QuotePlugin < Plugin def addquote(source, channel, quote) @lists[channel] = Array.new if(!@lists.has_key?(channel)) num = @lists[channel].length - @lists[channel][num] = Quote.new(num, Time.new, source, quote) + @lists[channel][num] = Quote.new(num, Time.new, source.fullform, quote) @changed[channel] = true return num end -- cgit v1.2.3