From 1ffb7946dc1d7cc23acc402daef1dac62ff41ffa Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 26 Mar 2015 08:11:58 +0100 Subject: [PATCH] * Salt Road Quartermasters - Fixed missing cardType and wrong super/subtypes. --- .../sets/dragonsoftarkir/SaltRoadQuartermasters.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/sets/dragonsoftarkir/SaltRoadQuartermasters.java b/Mage.Sets/src/mage/sets/dragonsoftarkir/SaltRoadQuartermasters.java index 744d14889b0..7b3854b9bed 100644 --- a/Mage.Sets/src/mage/sets/dragonsoftarkir/SaltRoadQuartermasters.java +++ b/Mage.Sets/src/mage/sets/dragonsoftarkir/SaltRoadQuartermasters.java @@ -50,15 +50,14 @@ import mage.target.common.TargetCreaturePermanent; public class SaltRoadQuartermasters extends CardImpl { public SaltRoadQuartermasters(UUID ownerId) { - super(ownerId, 199, "Salt Road Quartermasters", Rarity.UNCOMMON, new CardType[]{}, "{2}{G}"); + super(ownerId, 199, "Salt Road Quartermasters", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{G}"); this.expansionSetCode = "DTK"; - this.supertype.add("Creautre"); - this.supertype.add("Human"); - this.supertype.add("Soldier"); + this.subtype.add("Human"); + this.subtype.add("Soldier"); this.power = new MageInt(1); this.toughness = new MageInt(1); - // Salt Road QUartermasters enters the battlefield with two +1/+1 counters on it. + // Salt Road Quartermasters enters the battlefield with two +1/+1 counters on it. this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(2)), "with two +1/+1 counters on it"));