- Fixed Declaration In Stone.

This commit is contained in:
Jeff 2017-03-13 15:31:27 -05:00
parent 0b2f7ffcdb
commit f52bc17ca5

View file

@ -98,7 +98,10 @@ class DeclarationInStoneEffect extends OneShotEffect {
nonTokenCount++;
}
} else {
cardsToExile.add(targetPermanent);
if (cardsToExile.add(targetPermanent)
&& !(targetPermanent instanceof PermanentToken)) {
nonTokenCount++;
}
for (Permanent permanent : game.getBattlefield().getAllActivePermanents(new FilterCreaturePermanent(), targetPermanent.getControllerId(), game)) {
if (!permanent.getId().equals(targetPermanent.getId())
&& permanent.getName().equals(targetPermanent.getName())) {
@ -112,6 +115,7 @@ class DeclarationInStoneEffect extends OneShotEffect {
}
controller.moveCards(cardsToExile, Zone.EXILED, source, game);
game.applyEffects();
System.out.println("The nonTokenCount is " + nonTokenCount);
if (nonTokenCount > 0) {
new ClueArtifactToken().putOntoBattlefield(nonTokenCount, game, source.getSourceId(), targetPermanent.getControllerId(), false, false);
}