Minor fixes in Mana Short and Power Sink

This commit is contained in:
Quercitron 2014-05-17 17:08:33 +04:00
parent 5ec33fabe1
commit 3154838aca
2 changed files with 3 additions and 0 deletions

View file

@ -98,6 +98,8 @@ class ManaShortEffect extends OneShotEffect<ManaShortEffect> {
}
targetPlayer.getManaPool().emptyPool();
return true;
}
return false;
}

View file

@ -120,6 +120,7 @@ class PowerSinkCounterUnlessPaysEffect extends OneShotEffect<PowerSinkCounterUnl
for (Ability ability : landAbilities) {
if (ability instanceof ManaAbility) {
land.tap(game);
break;
}
}
}