From 5c1c8ec244fd6ed6a0a20ced1b83f49a7f9f2687 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 23 Jun 2014 15:43:25 +0200 Subject: [PATCH] * Heliod, God of the Sun - Fixed missing white color for the created token. --- Mage.Sets/src/mage/sets/theros/HeliodGodOfTheSun.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/theros/HeliodGodOfTheSun.java b/Mage.Sets/src/mage/sets/theros/HeliodGodOfTheSun.java index 768fcc0c2bc..50817de6d20 100644 --- a/Mage.Sets/src/mage/sets/theros/HeliodGodOfTheSun.java +++ b/Mage.Sets/src/mage/sets/theros/HeliodGodOfTheSun.java @@ -99,7 +99,7 @@ class HeliodGodOfTheSunToken extends Token { this.cardType.add(CardType.ENCHANTMENT); this.subtype.add("Cleric"); - this.color.isWhite(); + this.color.setWhite(true); this.power = new MageInt(2); this.toughness = new MageInt(1);