mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed Stormwild Capridor preventing combat damage
This commit is contained in:
parent
5624dd6153
commit
bfa674ed59
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ class StormwildCapridorEffect extends PreventionEffectImpl {
|
||||||
|
|
||||||
StormwildCapridorEffect() {
|
StormwildCapridorEffect() {
|
||||||
super(Duration.WhileOnBattlefield);
|
super(Duration.WhileOnBattlefield);
|
||||||
staticText = "If damage would be dealt to {this}, prevent that damage. " +
|
staticText = "If noncombat damage would be dealt to {this}, prevent that damage. " +
|
||||||
"Put a +1/+1 counter on {this} for each 1 damage prevented this way";
|
"Put a +1/+1 counter on {this} for each 1 damage prevented this way";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ class StormwildCapridorEffect extends PreventionEffectImpl {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
DamageCreatureEvent damageEvent = (DamageCreatureEvent) event;
|
DamageCreatureEvent damageEvent = (DamageCreatureEvent) event;
|
||||||
return damageEvent.isCombatDamage();
|
return !damageEvent.isCombatDamage();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue