]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/commitdiff
Previous commit also implemented quiz autoask delay, but I had forgotten to log it...
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Thu, 1 Feb 2007 16:34:55 +0000 (16:34 +0000)
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Thu, 1 Feb 2007 16:34:55 +0000 (16:34 +0000)
data/rbot/plugins/quiz.rb

index 8e1e7a5482fa6d79ef403209ff1e401a403dd620..0d1d9ee6dcbcea6559da116a137a9c817cd1aaa8 100644 (file)
@@ -7,12 +7,14 @@
 # (c) 2006 Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
 # Licensed under GPL V2.
 
-# FIXME interesting fact: n the Quiz class, @registry.has_key? seems to be case
-# insensitive! Although this is all right for us, this leads to rank vs
-# registry mismatches! So we have to make the @rank_table comparisons case
+# FIXME interesting fact: in the Quiz class, @registry.has_key? seems to be
+# case insensitive. Although this is all right for us, this leads to rank vs
+# registry mismatches. So we have to make the @rank_table comparisons case
 # insensitive as well. For the moment, redefine everything to downcase before
-# matching the nick. TODO define a class for the rank table. We might also need it
-# for scoring in other games.
+# matching the nick.
+#
+# TODO define a class for the rank table. We might also need it for scoring in
+# other games.
 
 # Class for storing question/answer pairs
 QuizBundle = Struct.new( "QuizBundle", :question, :answer )