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