*Reinstated Soul Seizer fix

This commit is contained in:
Hellfish
2013-04-01 17:02:08 +00:00
parent e329fe22c5
commit 680821cd95

View File

@@ -106,7 +106,7 @@ public class TargetSelection {
public final boolean chooseTargets() {
Target tgt = getTgt();
final boolean canTarget = doesTarget();
final boolean canTarget = tgt == null ? false : doesTarget();
final int minTargets = canTarget ? tgt.getMinTargets(getCard(), ability) : 0;
final int maxTargets = canTarget ? tgt.getMaxTargets(getCard(), ability) : 0;
final int numTargeted = canTarget ? tgt.getNumTargeted() : 0;