From 99315691dd52eb2ba20c8c7e3ecd6ca8b561b9af Mon Sep 17 00:00:00 2001 From: Agetian Date: Wed, 19 Jul 2017 15:03:47 +0000 Subject: [PATCH] - 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). --- forge-game/src/main/java/forge/game/ability/AbilityUtils.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/ability/AbilityUtils.java b/forge-game/src/main/java/forge/game/ability/AbilityUtils.java index bf350e29816..b04fc542fa4 100644 --- a/forge-game/src/main/java/forge/game/ability/AbilityUtils.java +++ b/forge-game/src/main/java/forge/game/ability/AbilityUtils.java @@ -465,7 +465,9 @@ public class AbilityUtils { } val = CardFactoryUtil.playerXCount(players, calcX[1], card); } - val = 0; + else { + val = 0; + } } if (val != null) {