3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00

[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!
Dieser Commit ist enthalten in:
Spongecade 2024-01-16 07:07:14 -06:00 committet von GitHub
Ursprung dab64ebb59
Commit f8cdf4fa1a
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -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;
}