* Added automatic handling for order of triggered abilities going to stack (fixes #701 / related to #328).

This commit is contained in:
LevelX2 2015-08-22 19:29:57 +02:00
parent 47f8483538
commit 532d4e0af0
27 changed files with 914 additions and 665 deletions

View file

@ -1384,8 +1384,8 @@ public class TestPlayer implements Player {
}
@Override
public void sendPlayerAction(mage.constants.PlayerAction playerAction, Game game) {
computerPlayer.sendPlayerAction(playerAction, game);
public void sendPlayerAction(mage.constants.PlayerAction playerAction, Game game, Object data) {
computerPlayer.sendPlayerAction(playerAction, game, data);
}
@Override