* Epochrasite - Fixed that it did not get the suspend ability after beeing exiled.

This commit is contained in:
LevelX2 2014-12-31 11:46:13 +01:00
parent bd6753da0b
commit 4d6e818490
2 changed files with 67 additions and 1 deletions

View file

@ -129,7 +129,7 @@ public class MageObjectReference implements Comparable<MageObjectReference> {
}
public Card getCard(Game game) {
Card card = game.getPermanent(sourceId);
Card card = game.getCard(sourceId);
if (card != null && card.getZoneChangeCounter() == zoneChangeCounter) {
return card;
}