mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- Fixed a small typo
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user