Fixed type for Harrow

updated Mage-Sets version in Mage.Rating.Plugin/pom.xml
This commit is contained in:
North 2011-05-14 10:11:52 +03:00
parent 55f3842464
commit da587fc717
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@
<dependency>
<groupId>org.mage</groupId>
<artifactId>Mage-Sets</artifactId>
<version>0.7</version>
<version>0.7.2</version>
</dependency>
<dependency>
<groupId>com.googlecode.jspf</groupId>

View file

@ -46,14 +46,14 @@ import mage.target.common.TargetControlledPermanent;
*/
public class Harrow extends CardImpl<Harrow> {
static FilterControlledPermanent filter = new FilterControlledPermanent("a land.");
private static final FilterControlledPermanent filter = new FilterControlledPermanent("a land.");
static{
filter.getCardType().add(CardType.LAND);
}
public Harrow(UUID ownerId){
super(ownerId, 165, "Harrow", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{2}{G}");
super(ownerId, 165, "Harrow", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{2}{G}");
this.expansionSetCode = "ZEN";
this.color.setGreen(true);