From 590de413e3d8158a41bce4ff8173391a8e32308d Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 11 Feb 2013 19:06:40 +0100 Subject: [PATCH] Fixed missing color to the created token of Deathpact Angel. --- Mage.Sets/src/mage/sets/gatecrash/DeathpactAngel.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/gatecrash/DeathpactAngel.java b/Mage.Sets/src/mage/sets/gatecrash/DeathpactAngel.java index 83bddf5b75a..47312a1da11 100644 --- a/Mage.Sets/src/mage/sets/gatecrash/DeathpactAngel.java +++ b/Mage.Sets/src/mage/sets/gatecrash/DeathpactAngel.java @@ -91,8 +91,9 @@ class DeathpactAngelToken extends Token { public DeathpactAngelToken() { super("Cleric", "1/1 white and black Cleric creature token onto the battlefield. It has \"{3}{W}{B}{B}, {T}, Sacrifice this creature: Return a card named Deathpact Angel from your graveyard to the battlefield.\""); cardType.add(CardType.CREATURE); - - color = ObjectColor.BLACK; + + color.setWhite(true); + color.setBlack(true); subtype.add("Cleric");