- Oracle Update: place -> put (part 2 + code support)

This commit is contained in:
Agetian
2017-04-30 05:29:57 +00:00
parent c3ec36e275
commit c5d36b3086
6 changed files with 8 additions and 8 deletions

View File

@@ -854,7 +854,7 @@ public class ComputerUtilCombat {
if (dealsFirstStrikeDamage(attacker, withoutAbilities, null)
&& (attacker.hasKeyword("Wither") || attacker.hasKeyword("Infect"))
&& !dealsFirstStrikeDamage(blocker, withoutAbilities, null)
&& !blocker.hasKeyword("CARDNAME can't have counters placed on it.")) {
&& !blocker.hasKeyword("CARDNAME can't have counters put on it.")) {
power -= attacker.getNetCombatDamage();
}
@@ -1192,7 +1192,7 @@ public class ComputerUtilCombat {
if (ComputerUtilCombat.dealsFirstStrikeDamage(blocker, withoutAbilities, combat)
&& (blocker.hasKeyword("Wither") || blocker.hasKeyword("Infect"))
&& !ComputerUtilCombat.dealsFirstStrikeDamage(attacker, withoutAbilities, combat)
&& !attacker.hasKeyword("CARDNAME can't have counters placed on it.")) {
&& !attacker.hasKeyword("CARDNAME can't have counters put on it.")) {
power -= blocker.getNetCombatDamage();
}
theTriggers.addAll(blocker.getTriggers());