diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-26 16:46:27 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-26 16:46:27 +0000 |
commit | e271af52bf0a7ac9796bafb04052ee073cd40738 (patch) | |
tree | 8fbe30931a048649fbc9251c9c6635e3451a47da /data/rbot/plugins/games | |
parent | 3388fc7d3feea19f07e16c2cf62b89acabc56c4e (diff) |
shiritori plugin: suppress warning
Diffstat (limited to 'data/rbot/plugins/games')
-rw-r--r-- | data/rbot/plugins/games/shiritori.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/games/shiritori.rb b/data/rbot/plugins/games/shiritori.rb index 011cb28c..111c914a 100644 --- a/data/rbot/plugins/games/shiritori.rb +++ b/data/rbot/plugins/games/shiritori.rb @@ -199,7 +199,7 @@ class ShiritoriGame # announce the current word, and player if take_turns? def announce - say (if take_turns? + say(if take_turns? _("%{current_player}, it's your turn. %{previous_word} -> %{current_word}") % { :current_player => current_player, :previous_word => previous_word, :current_word => current_word } |