mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
Use \u syntax for special characters
This commit is contained in:
@@ -2441,7 +2441,7 @@ public class Card extends GameEntity implements Comparable<Card>, IIdentifiable
|
|||||||
sb.append(chooseText);
|
sb.append(chooseText);
|
||||||
|
|
||||||
if (choices != null) {
|
if (choices != null) {
|
||||||
sb.append(" —\r\n");
|
sb.append(" \u2014\r\n");
|
||||||
for (int i = 0; i < choices.length; i++) {
|
for (int i = 0; i < choices.length; i++) {
|
||||||
String choice = choices[i].trim();
|
String choice = choices[i].trim();
|
||||||
|
|
||||||
@@ -2449,7 +2449,7 @@ public class Card extends GameEntity implements Comparable<Card>, IIdentifiable
|
|||||||
choice = choice.substring(3);
|
choice = choice.substring(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.append("• ").append(Character.toUpperCase(choice.charAt(0)))
|
sb.append("\u2022 ").append(Character.toUpperCase(choice.charAt(0)))
|
||||||
.append(choice.substring(1));
|
.append(choice.substring(1));
|
||||||
if (i < choices.length - 1) {
|
if (i < choices.length - 1) {
|
||||||
sb.append(".");
|
sb.append(".");
|
||||||
|
|||||||
Reference in New Issue
Block a user