remove deprecated discard method

This commit is contained in:
Ingmar Goudt 2019-12-30 00:22:33 +01:00
parent f68d6b80ba
commit 978309827b
13 changed files with 10 additions and 33 deletions

View file

@ -50,7 +50,7 @@ public class DrawDiscardTargetEffect extends OneShotEffect {
Player player = game.getPlayer(getTargetPointer().getFirst(game, source));
if (player != null) {
player.drawCards(cardsToDraw, game);
player.discard(cardsToDiscard, source, game);
player.discard(cardsToDiscard, false, source, game);
return true;
}
return false;