diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-01-26 00:06:00 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-01-26 00:06:00 +0000 |
commit | e0393df5027b33a44b0eac6cfa3dd29fa150fe0a (patch) | |
tree | 647428927631b84b5d1855c6bc8a6ce8be37edfc /data/rbot/plugins/azgame.rb | |
parent | 47f9d8ac16010d034373b1a2959778d391987909 (diff) |
Forgot a space
Diffstat (limited to 'data/rbot/plugins/azgame.rb')
-rw-r--r-- | data/rbot/plugins/azgame.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/azgame.rb b/data/rbot/plugins/azgame.rb index 1046bba3..ae6dbeb7 100644 --- a/data/rbot/plugins/azgame.rb +++ b/data/rbot/plugins/azgame.rb @@ -193,7 +193,7 @@ class AzGamePlugin < Plugin @games[k] = AzGame.new(self, lang, word)
end
tr = @games[k].total_tries
- m.reply "A-Z: #{Bold}#{@games[k].range}#{Bold}" + (tr > 0 ? "(after #{tr} tries)" : "")
+ m.reply "A-Z: #{Bold}#{@games[k].range}#{Bold}" + (tr > 0 ? " (after #{tr} tries)" : "")
return
end
|