We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66defa6 commit ab75081Copy full SHA for ab75081
src/main/java/lol/hyper/anarchystats/tools/MessageParser.java
@@ -95,9 +95,9 @@ public Component infoCommand() {
95
// don't add a new line if it's the first one
96
// creates a gap
97
if (i == 0) {
98
- infoCommand = Component.text(line);
+ infoCommand = MiniMessage.miniMessage().deserialize(line);
99
} else {
100
- infoCommand = infoCommand.append(Component.newline()).append(Component.text(line));
+ infoCommand = infoCommand.append(Component.newline()).append(MiniMessage.miniMessage().deserialize(line));
101
}
102
103
return infoCommand;
0 commit comments