removed Object[] data

master
melvin 2012-08-30 20:57:47 +08:00
parent 16879622d2
commit e944aa3392
1 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,6 @@ public class Armored_Skaab {
return new MagicEvent(
permanent,
player,
new Object[]{player},
this,
player + " puts the top four cards of his or her library into his or her graveyard.");
}
@ -24,7 +23,7 @@ public class Armored_Skaab {
final MagicEvent event,
final Object data[],
final Object[] choiceResults) {
game.doAction(new MagicMillLibraryAction((MagicPlayer)data[0],4));
game.doAction(new MagicMillLibraryAction(event.getPlayer(),4));
}
};
}