mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Typo fix
This commit is contained in:
parent
e0371bb22b
commit
e68b79336a
9 changed files with 20 additions and 20 deletions
|
|
@ -482,7 +482,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
|
|||
public ColoredManaSymbol getOneColoredManaSymbol() {
|
||||
|
||||
if (isMulticolored()) {
|
||||
throw new IllegalStateException("Founded multicolored object, but it's must call with single mana color.");
|
||||
throw new IllegalStateException("Found multicolored object, but it's must call with single mana color.");
|
||||
}
|
||||
|
||||
if (isBlack()) {
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ public class DckDeckImporter extends PlainTextDeckImporter {
|
|||
CardInfo foundedCard = CardRepository.instance.findCard(setCode, cardNum);
|
||||
boolean wasOutdated = false;
|
||||
if ((foundedCard != null) && !foundedCard.getName().equals(cardName)){
|
||||
sbMessage.append("Line ").append(lineCount).append(": ").append("founded outdated card number or name, will try to replace: ").append(line).append('\n');
|
||||
sbMessage.append("Line ").append(lineCount).append(": ").append("found outdated card number or name, will try to replace: ").append(line).append('\n');
|
||||
wasOutdated = true;
|
||||
foundedCard = null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue