* Fixed that converted mana costs for stack objects were not always calculated correctly (e.g. a Mental Misstep could counter a Cahlice of the Coid with X=1).

This commit is contained in:
LevelX2 2014-10-10 10:27:01 +02:00
parent 1c6f6c5f3d
commit 7ad45a2a6e
6 changed files with 41 additions and 17 deletions

View file

@ -40,6 +40,7 @@ public interface StackObject extends MageObject, Controllable {
UUID getSourceId();
void counter(UUID sourceId, Game game);
Ability getStackAbility();
int getConvertedManaCost();
@Override
StackObject copy();
}