fix Old Man of the Sea if Compy plays it when human has no creatures.

This commit is contained in:
jendave
2011-08-06 04:32:41 +00:00
parent 3127e3190b
commit 6077e12bc5

View File

@@ -18190,7 +18190,9 @@ public class CardFactory_Creatures {
return c.getNetAttack() <= power &&CardFactoryUtil.canTarget(card, getTargetCard()); return c.getNetAttack() <= power &&CardFactoryUtil.canTarget(card, getTargetCard());
} }
}); });
if(human.size() > 0) {
setTargetCard(human.get(0)); setTargetCard(human.get(0));
}
return human.size() > 0; return human.size() > 0;
} }
@Override @Override