mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
- Fixed Declaration In Stone.
This commit is contained in:
parent
0b2f7ffcdb
commit
f52bc17ca5
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue