summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/quotes.rb
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-07-24 12:35:56 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-07-24 12:35:56 +0000
commit127d9152199cac9b431586bb7b17f6f297b6864f (patch)
tree60cb518c4e1ea2bb6336a2fd1074261e354df97a /data/rbot/plugins/quotes.rb
parent1ac2e000c87164cad040b2d426ba947499df92af (diff)
[257] was moot, this is the propert way to prevent Structs from being created twice
Diffstat (limited to 'data/rbot/plugins/quotes.rb')
-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 4695fa10..30e341bf 100644
--- a/data/rbot/plugins/quotes.rb
+++ b/data/rbot/plugins/quotes.rb
@@ -1,6 +1,6 @@
# GB: Ok, we *really* need to switch to db for this plugin too
-Quote = Struct.new("Quote", :num, :date, :source, :quote) unless defined?(Quote)
+Quote = Struct.new("Quote", :num, :date, :source, :quote) unless defined?(Struct::Quote)
class QuotePlugin < Plugin
def initialize