diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-03-07 12:20:22 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-03-07 12:20:22 +0100 |
commit | 9be9f4450983156f4fee31d41c47a613c4376944 (patch) | |
tree | 18a75ffabc5b4ed95f59f05de441afa7dce903d3 | |
parent | 3cdd601ba03566e599d17de5c70a302dbe98734d (diff) |
hangman: space scores
-rw-r--r-- | data/rbot/plugins/games/hangman.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/games/hangman.rb b/data/rbot/plugins/games/hangman.rb index c5d7656f..c0a5ddc3 100644 --- a/data/rbot/plugins/games/hangman.rb +++ b/data/rbot/plugins/games/hangman.rb @@ -389,7 +389,7 @@ class HangmanPlugin < Plugin end m.reply _("%{sentence} %{again} %{scores}") % { - :sentence => sentence, :again => again, :scores => scores + :sentence => sentence, :again => again, :scores => scores.join(' ') }, :nick => true if rand(5).zero? |