Fixed the ability of Whirpool Rider

This commit is contained in:
Mischa Holz 2014-08-27 20:21:53 +02:00
parent a2bbfbd55b
commit 2e09716efd

View file

@ -93,8 +93,8 @@ class WhirlpoolRiderTriggeredEffect extends OneShotEffect {
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
int cardsHand = controller.getHand().size();
if (cardsHand > 0){
Cards cards = controller.getHand();
if (cardsHand > 0) {
Cards cards = controller.getHand().copy();
for (UUID cardId: cards) {
Card card = game.getCard(cardId);
if (card != null) {