mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Some more error message mistype / spelling fixes.
This commit is contained in:
@@ -401,9 +401,9 @@ public final class CardDb implements ICardDatabase {
|
|||||||
|
|
||||||
// Write to log that attempt,
|
// Write to log that attempt,
|
||||||
if (cR == CardRarity.Unknown )
|
if (cR == CardRarity.Unknown )
|
||||||
System.err.println(String.format("An unknown card found when loading Forge decks: \"%s\" Forge does not know of such card's existance. Have you mistyped the card name?", cardName));
|
System.err.println(String.format("An unknown card found when loading Forge decks: \"%s\" Forge does not know of such a card's existence. Have you mistyped the card name?", cardName));
|
||||||
else
|
else
|
||||||
System.err.println(String.format("An unsupported card was requested: \"%s\" from \"%s\" set. We're sorry, but you cannot use this card now.", cardName, cE.getName()));
|
System.err.println(String.format("An unsupported card was requested: \"%s\" from \"%s\" set. We're sorry, but you cannot use this card yet.", cardName, cE.getName()));
|
||||||
|
|
||||||
return new PaperCard(CardRules.getUnsupportedCardNamed(cardName), cE.getCode(), cR, 1);
|
return new PaperCard(CardRules.getUnsupportedCardNamed(cardName), cE.getCode(), cR, 1);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user