diff --git a/src/main/java/forge/game/player/Player.java b/src/main/java/forge/game/player/Player.java index 7705c11f586..695393e853e 100644 --- a/src/main/java/forge/game/player/Player.java +++ b/src/main/java/forge/game/player/Player.java @@ -1229,16 +1229,6 @@ public abstract class Player extends GameEntity implements Comparable { return this.drawCards(1); } - /** - *

- * drawCards. - *

- * - * @return a List of cards actually drawn - */ - public final List drawCards() { - return this.drawCards(1); - } /** *

@@ -1308,7 +1298,7 @@ public abstract class Player extends GameEntity implements Comparable { } // Play the Draw sound - Singletons.getModel().getGame().getEvents().post(new DrawCardEvent()); + game.getEvents().post(new DrawCardEvent()); return drawn; } @@ -1329,9 +1319,7 @@ public abstract class Player extends GameEntity implements Comparable { game.getAction().moveToLibrary(c); } shuffle(); - for (int i = 1; i < hand.size(); i++) { // draws one card less - drawCard(); - } + drawCards(hand.size() - 1); game.getEvents().post(new MulliganEvent(this)); // quest listener may interfere here final int newHand = getCardsIn(ZoneType.Hand).size();