Skip to content

Commit

Permalink
Fix Pawprint in Compleated (#6060)
Browse files Browse the repository at this point in the history
  • Loading branch information
tool4ever authored Sep 4, 2024
1 parent a975512 commit dbaf945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forge-game/src/main/java/forge/game/card/Card.java
Original file line number Diff line number Diff line change
Expand Up @@ -2429,9 +2429,9 @@ public final String keywordsToText(final Collection<KeywordInterface> keywords)
String pip = mc.getFirstPhyrexianPip();
String[] parts = pip.substring(1, pip.length() - 1).split("/");
final StringBuilder rem = new StringBuilder();
rem.append(pip).append(" can be paid with {").append(parts[1]).append("}");
rem.append(pip).append(" can be paid with {").append(parts[0]).append("}");
if (parts.length > 2) {
rem.append(", {").append(parts[2]).append("},");
rem.append(", {").append(parts[1]).append("},");
}
rem.append(" or 2 life. ");
if (mc.getPhyrexianCount() > 1) {
Expand Down

0 comments on commit dbaf945

Please sign in to comment.