mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Faerie Tauntings typo fix
This commit is contained in:
parent
a9744b2d04
commit
5a813262d6
1 changed files with 7 additions and 7 deletions
|
@ -40,10 +40,10 @@ import mage.constants.Rarity;
|
|||
*
|
||||
* @author Styxo
|
||||
*/
|
||||
public class FaerieTautings extends CardImpl {
|
||||
public class FaerieTauntings extends CardImpl {
|
||||
|
||||
public FaerieTautings(UUID ownerId) {
|
||||
super(ownerId, 112, "Faerie Tautings", Rarity.UNCOMMON, new CardType[]{CardType.TRIBAL, CardType.ENCHANTMENT}, "{2}{B}");
|
||||
public FaerieTauntings(UUID ownerId) {
|
||||
super(ownerId, 112, "Faerie Tauntings", Rarity.UNCOMMON, new CardType[]{CardType.TRIBAL, CardType.ENCHANTMENT}, "{2}{B}");
|
||||
this.expansionSetCode = "LRW";
|
||||
this.subtype.add("Faerie");
|
||||
|
||||
|
@ -53,12 +53,12 @@ public class FaerieTautings extends CardImpl {
|
|||
|
||||
}
|
||||
|
||||
public FaerieTautings(final FaerieTautings card) {
|
||||
public FaerieTauntings(final FaerieTauntings card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FaerieTautings copy() {
|
||||
return new FaerieTautings(this);
|
||||
public FaerieTauntings copy() {
|
||||
return new FaerieTauntings(this);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue