forked from External/mage
- Converted CardImpl.cardNumber from int to String
- Fixed Issue #1953 - Fixed Issue #1914 - Fixed Issue #739
This commit is contained in:
parent
c264da1cca
commit
10778cdd6b
11423 changed files with 13190 additions and 11454 deletions
|
|
@ -38,6 +38,10 @@ import mage.abilities.mana.BlackManaAbility;
|
|||
public abstract class Swamp extends BasicLand {
|
||||
|
||||
public Swamp(UUID ownerId, int cardNumber) {
|
||||
this(ownerId, String.valueOf(cardNumber));
|
||||
}
|
||||
|
||||
public Swamp(UUID ownerId, String cardNumber) {
|
||||
super(ownerId, cardNumber, "Swamp", new BlackManaAbility());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue