summaryrefslogtreecommitdiff
path: root/data/rbot/plugins
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-01-27 11:30:42 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-01-27 11:30:42 +0000
commite1556de8aa3d4cd29db17908d3a14bbb133474bd (patch)
treeeaf95d9ec85d62266c6de7d97752a5cbd63c9e6a /data/rbot/plugins
parentaaf9333016f3aea00bc7ebebe7e6a54f19cf3770 (diff)
Since the new Irc framework the quotes plugin wasn't saving the full netmask of the submitter. Fix it
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r--data/rbot/plugins/quotes.rb2
1 files changed, 1 insertions, 1 deletions
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