1
0
Fork 0
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:
LevelX2 2012-10-12 16:19:48 +02:00
parent c898592128
commit 116da59f48
2 changed files with 1 additions and 3 deletions
Mage.Sets/src/mage/sets/returntoravnica

View file

@ -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;

View file

@ -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))
{