- Fixed LKI's of tokens.

This commit is contained in:
Sloth
2013-05-26 09:36:30 +00:00
parent b2edf7ac90
commit d7dbd293bf

View File

@@ -243,12 +243,12 @@ public class GameAction {
// remove all counters from the card if destination is not the battlefield
// UNLESS we're dealing with Skullbriar, the Walking Grave
if (zoneTo.is(ZoneType.Hand) || zoneTo.is(ZoneType.Library) ||
(!zoneTo.is(ZoneType.Battlefield) && !c.getName().equals("Skullbriar, the Walking Grave"))) {
if (!c.isToken() && (zoneTo.is(ZoneType.Hand) || zoneTo.is(ZoneType.Library) ||
(!zoneTo.is(ZoneType.Battlefield) && !c.getName().equals("Skullbriar, the Walking Grave")))) {
copied.clearCounters();
}
if (!zoneTo.is(ZoneType.Battlefield)) {
if (!c.isToken() && !zoneTo.is(ZoneType.Battlefield)) {
copied.getCharacteristics().resetCardColor();
}