diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-12-16 23:08:31 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-12-16 23:08:31 +0000 |
commit | f9ce9ceadb7a1e1b8cd0682f182c6aa982e337de (patch) | |
tree | 4a11ac5112d262bafb9fb51d6f6d24a052c74b4d /data/rbot/plugins/azgame.rb | |
parent | b248fcaf86256bb92ae3d42090da7ae76dd07ce6 (diff) |
Previous commit also had fixes in azgame, forgot to log them
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 ae059f7c..9d2cbe95 100644 --- a/data/rbot/plugins/azgame.rb +++ b/data/rbot/plugins/azgame.rb @@ -114,7 +114,7 @@ class AzGamePlugin < Plugin k = m.channel.downcase.to_s
word = params[:word].downcase
if not @games.key?(k)
- m.reply "no A-Z game running here, can't check for #{word}, can I?"
+ m.reply "no A-Z game running here, can't check if #{word} is valid, can I?"
return
end
if word !~ /^[a-z]+$/
|