- Fixed a small typo

This commit is contained in:
moomarc
2013-02-20 13:42:59 +00:00
parent e7b8254db9
commit 87df8e91d3
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ final class CardFaceRules implements ICardCharacteristics {
public final void setColor(ColorSet color0) { this.color = color0; }
public final void setOracleText(String text) { this.oracleText = text; }
public final void addKeyword(String value) { this.keywords.add(value); }
public final void setInitialLoaylty(int value) { this.initialLoyalty = value; }
public final void setInitialLoyalty(int value) { this.initialLoyalty = value; }
public final Map<String, CardInSet> getSetsData() { return this.setsPrinted; } // reader will add sets here
public void setPtText(String value) {

View File

@@ -150,7 +150,7 @@ public class CardRulesReader {
case 'L':
if ("Loyalty".equals(key)) {
this.faces[this.curFace].setInitialLoaylty(Integer.valueOf(value));
this.faces[this.curFace].setInitialLoyalty(Integer.valueOf(value));
}
break;