From 9233064273a304d54e3679db2a46be690d39230f Mon Sep 17 00:00:00 2001 From: Phoenix616 Date: Thu, 17 Nov 2022 23:28:09 +0100 Subject: [PATCH] Adjust comment regarding floodgate to their current default prefix --- .../java/com/Acrobot/ChestShop/Configuration/Properties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java b/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java index c820311..392deda 100644 --- a/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java +++ b/src/main/java/com/Acrobot/ChestShop/Configuration/Properties.java @@ -202,8 +202,8 @@ public class Properties { 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.\n" + - "Note for Bedrock support: If you have Floodgate on your server, you should set this regexp to ^\\\\*?\\\\w+$ and ENSURE_CORRECT_PLAYERID to false\n" + - "If your Floodgate prefix is not *, change the first * in the regexp (the one before the question mark) to whatever your prefix is.") + "Note for Bedrock support: If you have Floodgate on your server, you should set this regexp to ^\\\\.?\\\\w+$ and ENSURE_CORRECT_PLAYERID to false\n" + + "If your Floodgate prefix is not a dot, then change the first . in the regexp (the one before the question mark) to whatever your prefix is.") public static String VALID_PLAYERNAME_REGEXP = "^\\w+$"; @PrecededBySpace