mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
Removed unneccessary log message from MoveToZone STACK => EXILE.
This commit is contained in:
parent
1338de4269
commit
aff2489e7a
2 changed files with 6 additions and 2 deletions
|
|
@ -50,6 +50,7 @@ import org.apache.log4j.Logger;
|
|||
import java.lang.reflect.Constructor;
|
||||
import java.util.*;
|
||||
import mage.constants.SpellAbilityType;
|
||||
import static mage.constants.Zone.EXILED;
|
||||
import mage.game.command.Commander;
|
||||
|
||||
|
||||
|
|
@ -414,6 +415,9 @@ public abstract class CardImpl<T extends CardImpl<T>> extends MageObjectImpl<T>
|
|||
case EXILED:
|
||||
game.getExile().removeCard(this, game);
|
||||
break;
|
||||
case STACK:
|
||||
// nothing to do
|
||||
break;
|
||||
default:
|
||||
logger.warn("moveToExile, not fully implemented: from="+fromZone);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue