mirror of
https://github.com/correl/mage.git
synced 2025-04-02 11:25:59 -09:00
Fixed #214. Keymaster Rogue returned land instead of creature to hand.
This commit is contained in:
parent
a250e9a183
commit
e9aaee7054
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue