mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[CMR] fixed Kangee, Sky Warden boost persisting (#fixes #7167)
This commit is contained in:
parent
0b2199b3ef
commit
ec48841993
1 changed files with 2 additions and 2 deletions
|
@ -56,12 +56,12 @@ public final class KangeeSkyWarden extends CardImpl {
|
|||
|
||||
// Whenever Kangee, Sky Warden attacks, attacking creatures with flying get +2/+0 until end of turn.
|
||||
this.addAbility(new AttacksTriggeredAbility(new BoostAllEffect(
|
||||
2, 0, Duration.WhileOnBattlefield, filter1, false
|
||||
2, 0, Duration.EndOfTurn, filter1, false
|
||||
), false));
|
||||
|
||||
// Whenever Kangee blocks, blocking creatures with flying get +0/+2 until end of turn.
|
||||
this.addAbility(new BlocksTriggeredAbility(new BoostAllEffect(
|
||||
0, 2, Duration.WhileOnBattlefield, filter2, false
|
||||
0, 2, Duration.EndOfTurn, filter2, false
|
||||
), false));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue