1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-04 17:00:13 -09:00

Fix for issue . Tests do all work, need some more checking if this really works.

This commit is contained in:
LevelX2 2014-08-10 11:28:02 +02:00
parent 80346d44da
commit c8fa685735
2 changed files with 2 additions and 2 deletions
Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters
Mage/src/mage/cards

View file

@ -39,7 +39,7 @@ public class BloodMoonTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Blood Moon");
/**
* Grasslands
* Grasslands
* Land
* Grasslands enters the battlefield tapped.
* {T}, Sacrifice Grasslands: Search your library for a Forest or Plains card and put it onto the battlefield. Then shuffle your library.

View file

@ -535,7 +535,7 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
game.addPermanent(permanent);
game.setZone(objectId, Zone.BATTLEFIELD);
game.setScopeRelevant(true);
game.applyEffects();
//game.applyEffects(); // issue #493
permanent.setTapped(tapped);
permanent.entersBattlefield(sourceId, game, event.getFromZone(), true);
game.setScopeRelevant(false);