forked from External/mage
[C14] Added 6 blue cards.
This commit is contained in:
parent
07b509684a
commit
c673fbfae1
18 changed files with 1006 additions and 8 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue