- Fixed Effects not leaving Command zone.

This commit is contained in:
Sloth
2013-07-08 19:25:51 +00:00
parent 0c74043668
commit 83936a924e

View File

@@ -141,7 +141,7 @@ public class GameAction {
boolean fromBattlefield = zoneFrom != null && zoneFrom.is(ZoneType.Battlefield);
//Rule 110.5g: A token that has left the battlefield can't move to another zone
if (c.isToken() && zoneFrom != null && !fromBattlefield) {
if (c.isToken() && zoneFrom != null && !fromBattlefield && !zoneFrom.is(ZoneType.Command)) {
return c;
}