From ea1067189da763b3192104e6cd2e3c1a57fffb41 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Sat, 27 Dec 2014 17:12:21 +0100 Subject: [PATCH] Specify the player when triggering a move on a revealed card Fixes #72, #493 --- cockatrice/src/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/player.cpp b/cockatrice/src/player.cpp index 9c9e7174..42521802 100644 --- a/cockatrice/src/player.cpp +++ b/cockatrice/src/player.cpp @@ -1900,7 +1900,7 @@ void Player::cardMenuAction() default: ; } } - game->sendGameCommand(prepareGameCommand(commandList)); + game->sendGameCommand(prepareGameCommand(commandList), getId()); } void Player::actIncPT(int deltaP, int deltaT)