Skip to content

Commit

Permalink
DiscardEffect typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Northmoc committed Dec 2, 2023
1 parent fa8a8af commit 42c0094
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected String getStackDescription(SpellAbility sa) {
} else if (CardType.CoreType.isValidEnum(validD)) {
validD = validD.toLowerCase();
}
valid = validD.contains(" card") ? validD : valid + " " + valid;
valid = validD.contains(" card") ? validD : validD + " " + valid;
}

if (mode.equals("Hand")) {
Expand Down

0 comments on commit 42c0094

Please sign in to comment.