- Fixed Phantom Nomad getting multiple counters removed from combat damage (only one counter is now removed from it for all the damage applied to it simultaneously).

This commit is contained in:
Agetian
2015-06-02 17:12:35 +00:00
parent e94bf25c4c
commit 201542300b
2 changed files with 19 additions and 1 deletions

View File

@@ -87,6 +87,17 @@ public class ReplaceDamage extends ReplacementEffect {
}
}
}
if (getMapParams().containsKey("IsNonCombat")) {
if (getMapParams().get("IsNonCombat").equals("True")) {
if (((Boolean) runParams.get("IsCombat"))) {
return false;
}
} else {
if (!(Boolean) runParams.get("IsCombat")) {
return false;
}
}
}
if (getMapParams().containsKey("IsEquipping") && !getHostCard().isEquipping()) {
return false;
}