* Added Body Double.

This commit is contained in:
LevelX2 2014-11-02 12:19:12 +01:00
parent 532345e28a
commit b6c7f0efed
3 changed files with 173 additions and 1 deletions

View file

@ -137,7 +137,7 @@ public class CopyEffect extends ContinuousEffectImpl {
@Override
public boolean isInactive(Ability source, Game game) {
// The copy effect is added, if the copy takes place. If source left battlefield, the copy effect must cease to exist
// The copy effect is added, if the copy takes place. If source left battlefield, the copy effect has cease to exist
Permanent permanent = game.getPermanent(this.sourceId);
return permanent == null || permanent.getZoneChangeCounter() != this.zoneChangeCounter;
}