Suggest a better regexp to Floodgate players

This commit is contained in:
Daniel Buchmann 2021-02-19 22:02:31 +01:00
parent 7aea9d852c
commit cec2515f1b
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ public class Properties {
@ConfigurationComment("This makes sure that the UUIDs of player shop accounts match the server's online-mode setting. Disabling this might lead to issues with offline players and is therefore unsupported!")
public static boolean ENSURE_CORRECT_PLAYERID = true;
@ConfigurationComment("This regexp validates the name of the player. If the name doesn't match, the player will neither be able to create a valid shop sign, nor buy/sell from a shop. Note to Bedrock players: If you have Floodgate on your server, you should set this regexp to ^[*]*\\\\w+$ and ENSURE_CORRECT_PLAYERID to false")
@ConfigurationComment("This regexp validates the name of the player. If the name doesn't match, the player will neither be able to create a valid shop sign, nor buy/sell from a shop. Note to Bedrock players: If you have Floodgate on your server, you should set this regexp to ^\\\\*?\\\\w+$ and ENSURE_CORRECT_PLAYERID to false")
public static String VALID_PLAYERNAME_REGEXP = "^\\\\w+$";
@PrecededBySpace