From 04e36b4cbcb242463e9c65e1eaff6ce051ff6719 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 26 Aug 2013 08:31:50 +0200 Subject: [PATCH] * Tolsimir Wolfblood - Fixed missing attribute of created token (token was no creature). --- Mage.Sets/src/mage/sets/ravnika/TolsimirWolfblood.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/ravnika/TolsimirWolfblood.java b/Mage.Sets/src/mage/sets/ravnika/TolsimirWolfblood.java index 315024960b..41e6447441 100644 --- a/Mage.Sets/src/mage/sets/ravnika/TolsimirWolfblood.java +++ b/Mage.Sets/src/mage/sets/ravnika/TolsimirWolfblood.java @@ -93,7 +93,7 @@ public class TolsimirWolfblood extends CardImpl { class VojaToken extends Token{ public VojaToken(){ super("Voja", "legendary 2/2 green and white Wolf creature token named Voja"); - + this.cardType.add(CardType.CREATURE); this.supertype.add("Legendary"); this.subtype.add("Wolf");