removed Object[] data

master
melvin 2012-09-02 15:39:12 +08:00
parent c2ebde2d89
commit 4b445d2aa3
1 changed files with 5 additions and 6 deletions

View File

@ -18,7 +18,6 @@ public class Ezuri_s_Archers {
new MagicEvent(
permanent,
permanent.getController(),
new Object[]{permanent},
this,
permanent + " gets +3/+0 until end of turn."):
MagicEvent.NONE;
@ -29,7 +28,7 @@ public class Ezuri_s_Archers {
final MagicEvent event,
final Object data[],
final Object[] choiceResults) {
game.doAction(new MagicChangeTurnPTAction((MagicPermanent)data[0],3,0));
game.doAction(new MagicChangeTurnPTAction(event.getPermanent(),3,0));
}
};
}