TestPlayer declareBlocker fix

This commit is contained in:
L_J 2018-05-19 08:42:07 +00:00 committed by GitHub
parent a7d662d73e
commit bd2a2eebf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2007,6 +2007,11 @@ public class TestPlayer implements Player {
computerPlayer.declareBlocker(defenderId, blockerId, attackerId, game);
}
@Override
public void declareBlocker(UUID defenderId, UUID blockerId, UUID attackerId, Game game, boolean allowUndo) {
computerPlayer.declareBlocker(defenderId, blockerId, attackerId, game, allowUndo);
}
@Override
public boolean searchLibrary(TargetCardInLibrary target, Game game) {
return computerPlayer.searchLibrary(target, game);