Remove an unused argument to Player.putInGraveyard

This commit is contained in:
Samuel Sandeen 2016-09-05 11:47:52 -04:00
parent db3c2e9d8c
commit 34846170c4
8 changed files with 18 additions and 20 deletions

View file

@ -350,7 +350,7 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
updateZoneChangeCounter(game);
switch (event.getToZone()) {
case GRAVEYARD:
game.getPlayer(ownerId).putInGraveyard(this, game, !flag);
game.getPlayer(ownerId).putInGraveyard(this, game);
break;
case HAND:
game.getPlayer(ownerId).getHand().add(this);