mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Chandra's Triumph dealing 5 damage even without controlling a Chandra planeswalker
This commit is contained in:
parent
ec9d465432
commit
79f8391fef
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class ChandrasTriumphEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
int damage = 3;
|
||||
if (game.getBattlefield().getActivePermanents(filter, source.getControllerId(), game).isEmpty()) {
|
||||
if (!game.getBattlefield().getActivePermanents(filter, source.getControllerId(), game).isEmpty()) {
|
||||
damage = 5;
|
||||
}
|
||||
return permanent.damage(damage, source.getSourceId(), game) > 0;
|
||||
|
|
Loading…
Reference in a new issue