mirror of
https://github.com/correl/mage.git
synced 2025-04-01 19:07:57 -09:00
minor changes to Pack Rat and Soul Tithe
This commit is contained in:
parent
c898592128
commit
116da59f48
2 changed files with 1 additions and 3 deletions
Mage.Sets/src/mage/sets/returntoravnica
|
@ -46,8 +46,6 @@ import mage.filter.common.FilterControlledPermanent;
|
|||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.PermanentToken;
|
||||
import mage.game.permanent.token.Token;
|
||||
import mage.sets.tokens.EmptyToken;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
|
|
|
@ -108,7 +108,7 @@ class SoulTitheSacrificeSourceUnlessPaysEffect extends OneShotEffect<SoulTitheSa
|
|||
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||
if (player != null && permanent != null) {
|
||||
int cmc = permanent.getManaCost().convertedManaCost();
|
||||
if (player.chooseUse(Outcome.Benefit, "Pay {" + cmc + "} or sacrifice " + permanent.getName() + "?", game)) {
|
||||
if (player.chooseUse(Outcome.Benefit, "Pay {" + cmc + "} for " + permanent.getName() + "?", game)) {
|
||||
Cost cost = new GenericManaCost(cmc);
|
||||
if (cost.pay(source, game, source.getId(), source.getControllerId(), false))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue