removed Object[] data

master
melvin 2012-08-30 21:59:29 +08:00
parent 8ce0dbd270
commit 05626bec4e
1 changed files with 1 additions and 2 deletions

View File

@ -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));
} }