* Loam Dweller - Fixed that the land was not put onto battlefield tapped.

This commit is contained in:
LevelX2 2015-04-30 10:24:55 +02:00
parent d39dad518d
commit 4d21cde3bb

View file

@ -52,6 +52,7 @@ public class PutLandFromHandOntoBattlefieldEffect extends OneShotEffect {
}
public PutLandFromHandOntoBattlefieldEffect(boolean tapped) {
super(Outcome.PutLandInPlay);
this.tapped = tapped;
staticText = "you may put a land card from your hand onto the battlefield" + (tapped ? " tapped":"");
}