summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/rbot/plugins/games/hangman.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/data/rbot/plugins/games/hangman.rb b/data/rbot/plugins/games/hangman.rb
index af0d9d9c..d571fd78 100644
--- a/data/rbot/plugins/games/hangman.rb
+++ b/data/rbot/plugins/games/hangman.rb
@@ -441,18 +441,18 @@ class HangmanPlugin < Plugin
else
return unless m.public?
- user = m.server.get_user(params[:nick])
- stats = @stats.player_stats(target)[user]
+ nick = params[:nick]
+ stats = @stats.player_stats(target)[nick]
unless stats.played.zero?
m.reply _("%{nick} has %{score} points after %{games} games") % {
- :nick => user.nick,
+ :nick => nick,
:score => stats.score.round,
:games => stats.played
}
else
m.reply _("%{nick} hasn't played hangman :(") % {
- :nick => user.nick
+ :nick => nick
}
end
end
@@ -491,4 +491,4 @@ plugin.map "hangman stop", :action => 'stop'
plugin.map "hangman score [:nick]", :action => 'score'
plugin.map "hangman stats", :action => 'stats'
-plugin.map "define", :action => 'define' \ No newline at end of file
+plugin.map "define", :action => 'define'