1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 11:25:59 -09:00

Fixed . Keymaster Rogue returned land instead of creature to hand.

This commit is contained in:
LevelX2 2013-05-01 15:45:49 +02:00
parent a250e9a183
commit e9aaee7054

View file

@ -36,7 +36,7 @@ import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.common.ReturnToHandTargetEffect;
import mage.abilities.keyword.UnblockableAbility;
import mage.cards.CardImpl;
import mage.filter.common.FilterControlledLandPermanent;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.target.Target;
import mage.target.common.TargetControlledPermanent;
@ -60,7 +60,7 @@ public class KeymasterRogue extends CardImpl<KeymasterRogue> {
this.addAbility(new UnblockableAbility());
// When Keymaster Rogue enters the battlefield, return a creature you control to its owner's hand.
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect());
Target target = new TargetControlledPermanent(1, 1, new FilterControlledLandPermanent(), false);
Target target = new TargetControlledPermanent(1, 1, new FilterControlledCreaturePermanent(), false);
target.setRequired(true);
ability.addTarget(target);
this.addAbility(ability);