* Fixed some problems with creation of tokens of target permanents (fixes #1244).

This commit is contained in:
LevelX2 2015-09-08 18:13:32 +02:00
parent 39cfbec82f
commit e37c9a6472
24 changed files with 383 additions and 130 deletions

View file

@ -7,7 +7,7 @@ import mage.game.permanent.Permanent;
/**
* @author noxx
*/
public abstract class ApplyToPermanent implements Serializable {
public abstract class ApplyToPermanent extends ApplyToMageObject implements Serializable {
public abstract Boolean apply(Game game, Permanent permanent);
}