[C14] Added 6 blue cards.

This commit is contained in:
LevelX2 2014-11-28 17:39:47 +01:00
parent 07b509684a
commit c673fbfae1
18 changed files with 1006 additions and 8 deletions

View file

@ -120,4 +120,12 @@ public class MageObjectReference implements Comparable<MageObjectReference> {
return mageObject.getId().equals(sourceId);
}
public Permanent getPermanent(Game game) {
Permanent permanent = game.getPermanent(sourceId);
if (permanent != null && permanent.getZoneChangeCounter() == zoneChangeCounter) {
return permanent;
}
return null;
}
}