* Chorus of the Conclave - Anotehr small change.

This commit is contained in:
LevelX2 2015-03-24 08:30:02 +01:00
parent c20e21b0fb
commit 16b01b03be

View file

@ -114,7 +114,6 @@ class ChorusOfTheConclaveReplacementEffect extends ReplacementEffectImpl {
if (you != null) {
if (you.chooseUse(Outcome.Benefit, "Do you wish to pay the additonal cost to add +1/+1 counters to the creature you cast?", game)) {
xCost += playerPaysXGenericMana(you, source, game);
if (xCost > 0) {
// save the x value to be available for ETB replacement effect
Object object = game.getState().getValue("spellX" + source.getSourceId());
Map<UUID, Integer> spellX;
@ -127,7 +126,6 @@ class ChorusOfTheConclaveReplacementEffect extends ReplacementEffectImpl {
game.getState().setValue("spellX" + source.getSourceId(), spellX);
}
}
}
return false;
}