[ci skip] Update Minecraft wiki references (#1092)

The Minecraft Fandom wiki has been forked to a new domain: minecraft.wiki. Learn more here: https://minecraft.wiki/w/Minecraft_Wiki:Moving_from_Fandom. This PR updates all references accordingly.

Let me know if you want me to open this PR on other branches!
This commit is contained in:
Spongecade
2024-01-16 07:07:14 -06:00
committed by GitHub
parent dab64ebb59
commit f8cdf4fa1a

View File

@@ -30,7 +30,7 @@ public final class CharacterUtil {
*/
public static boolean isAllowedCharacter(char c) {
// 167 = §, 127 = DEL
// https://minecraft.fandom.com/wiki/Multiplayer#Chat
// https://minecraft.wiki/w/Chat
return c != 167 && c >= ' ' && c != 127;
}