*Added Skullbriar, the Walking Grave.

This commit is contained in:
Hellfish
2011-08-31 19:47:45 +00:00
parent 09439a6ec1
commit 875dec836d
3 changed files with 13 additions and 1 deletions

View File

@@ -127,7 +127,8 @@ public class GameAction {
copied = AllZone.getCardFactory().copyCard(copied);
*/
//remove all counters from the card if destination is not the battlefield
if (!zone.is(Constant.Zone.Battlefield))
//UNLESS we're dealing with Skullbriar, the Walking Grave
if (!zone.is(Constant.Zone.Battlefield) && !(c.getName().equals("Skullbriar, the Walking Grave") && !zone.is(Constant.Zone.Hand) && !zone.is(Constant.Zone.Library)))
copied.clearCounters();
copied.setTimestamp(AllZone.getNextTimestamp());