9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2025-12-19 15:09:26 +00:00

fix: MiniMessage format and spigot update checker

This commit is contained in:
NewZAZ
2025-10-09 11:55:32 +02:00
parent 3c107b51ca
commit 1e91674dd2
3 changed files with 2 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ public class StringUtils {
@NotNull
public static String parseStringToString(final String parsed) {
return AdventureUtils.SERIALIZER.serialize(AdventureUtils.MINI_MESSAGE.deserialize(parsed));
return AdventureUtils.MINI_MESSAGE.serialize(AdventureUtils.MINI_MESSAGE.deserialize(parsed));
}
}