From 9be9f4450983156f4fee31d41c47a613c4376944 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sat, 7 Mar 2009 12:20:22 +0100 Subject: [PATCH] hangman: space scores --- data/rbot/plugins/games/hangman.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? -- 2.39.5