Skip to content

Commit

Permalink
feat: add & color support (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
CptbeffHeart authored Aug 23, 2024
1 parent e534bab commit 8b2bbe0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static void reloadLinks() {
if (type != null && isValidType(type)) {
addLink(new TypedServerLink(ServerLinks.Type.valueOf(type.toUpperCase()), url));
} else if (name != null) {
addLink(new NamedServerLink(name, url));
addLink(new NamedServerLink(name.replace("&", "§"), url));
} else {
CustomServerLinks.LOGGER.warning("Could not load link for: " + key);
}
Expand Down

0 comments on commit 8b2bbe0

Please sign in to comment.