From 5e6d8f49a7288ee56f02407a3f4432a6fc0699c9 Mon Sep 17 00:00:00 2001 From: Nathaniel Brandes Date: Fri, 13 May 2016 23:25:51 -0700 Subject: [PATCH] Correct function change. --- Mage/src/main/java/mage/players/PlayerImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage/src/main/java/mage/players/PlayerImpl.java b/Mage/src/main/java/mage/players/PlayerImpl.java index 2a5afe4ecbe..4e8b113f851 100644 --- a/Mage/src/main/java/mage/players/PlayerImpl.java +++ b/Mage/src/main/java/mage/players/PlayerImpl.java @@ -3115,7 +3115,7 @@ public abstract class PlayerImpl implements Player, Serializable { } @Override - public boolean moveCards(Set cards, Zone toZone, Ability source, Game game) { + public boolean moveCards(Set cards, Zone fromZone, Zone toZone, Ability source, Game game) { return moveCards(cards, toZone, source, game); } @@ -3139,7 +3139,7 @@ public abstract class PlayerImpl implements Player, Serializable { } @Override - public boolean moveCards(Set cards, Zone fromZone, Zone toZone, Ability source, Game game) { + public boolean moveCards(Set cards, Zone toZone, Ability source, Game game) { return moveCards(cards, toZone, source, game, false, false, false, null); }