removed Object[] data
parent
8ce0dbd270
commit
05626bec4e
|
@ -24,7 +24,6 @@ public class Karmic_Guide {
|
||||||
player,
|
player,
|
||||||
MagicTargetChoice.TARGET_CREATURE_CARD_FROM_GRAVEYARD,
|
MagicTargetChoice.TARGET_CREATURE_CARD_FROM_GRAVEYARD,
|
||||||
new MagicGraveyardTargetPicker(true),
|
new MagicGraveyardTargetPicker(true),
|
||||||
new Object[]{player},
|
|
||||||
this,
|
this,
|
||||||
"Return target creature card$ from " +
|
"Return target creature card$ from " +
|
||||||
"your graveyard to the battlefield.");
|
"your graveyard to the battlefield.");
|
||||||
|
@ -39,7 +38,7 @@ public class Karmic_Guide {
|
||||||
event.processTargetCard(game,choiceResults,0,new MagicCardAction() {
|
event.processTargetCard(game,choiceResults,0,new MagicCardAction() {
|
||||||
public void doAction(final MagicCard targetCard) {
|
public void doAction(final MagicCard targetCard) {
|
||||||
game.doAction(new MagicReanimateAction(
|
game.doAction(new MagicReanimateAction(
|
||||||
(MagicPlayer)data[0],
|
event.getPlayer(),
|
||||||
targetCard,
|
targetCard,
|
||||||
MagicPlayCardAction.NONE));
|
MagicPlayCardAction.NONE));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue