mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
fixed some card type hints (#7050)
This commit is contained in:
parent
317595346d
commit
c11ba5b82a
3 changed files with 3 additions and 3 deletions
|
|
@ -37,7 +37,7 @@ public enum DeliriumHint implements Hint {
|
|||
String message = "" + types.size();
|
||||
if (types.size() > 0) {
|
||||
message += " (";
|
||||
message += types.stream().reduce((a, b) -> a + ", " + b);
|
||||
message += types.stream().reduce((a, b) -> a + ", " + b).orElse("");
|
||||
message += ')';
|
||||
}
|
||||
return "Card types in your graveyard: " + message;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue