- Do not reset playerXProperty to 0 in all cases (fixes Bloodghast, Guul Draz Specter and other similar cards that care for the player-based condition).

This commit is contained in:
Agetian
2017-07-19 15:03:47 +00:00
parent ff5446b145
commit 99315691dd

View File

@@ -465,7 +465,9 @@ public class AbilityUtils {
} }
val = CardFactoryUtil.playerXCount(players, calcX[1], card); val = CardFactoryUtil.playerXCount(players, calcX[1], card);
} }
val = 0; else {
val = 0;
}
} }
if (val != null) { if (val != null) {