summaryrefslogtreecommitdiff
path: root/data/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-08-16 16:05:33 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-08-16 16:06:47 +0200
commitc9074f4cab24c624ec1bb43d6b98880416205282 (patch)
tree633312e41dd283a65a356ae79872bc09694e5ffc /data/rbot
parente51cc13bc8cf22227580f09c3e03fc776549a4a9 (diff)
Suppress warnings about unitialized variables
hangman: an unneeded letters accessor was defined ircbot: restore initializations removed by previous commit
Diffstat (limited to 'data/rbot')
-rw-r--r--data/rbot/plugins/games/hangman.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/games/hangman.rb b/data/rbot/plugins/games/hangman.rb
index c0a5ddc3..2a4bf338 100644
--- a/data/rbot/plugins/games/hangman.rb
+++ b/data/rbot/plugins/games/hangman.rb
@@ -63,7 +63,7 @@ class Hangman
end
class Hangman
- attr_reader :misses, :guesses, :word, :letters, :scores
+ attr_reader :misses, :guesses, :word, :scores
STAGES = [' (x_x) ', ' (;_;) ', ' (>_<) ', ' (-_-) ', ' (o_~) ', ' (^_^) ', '\(^o^)/']
HEALTH = STAGES.size-1