Change hard limit to one million

This commit is contained in:
Phoenix616 2020-04-17 14:52:27 +01:00
parent f2db944aa7
commit 54a713af89

View File

@ -27,7 +27,7 @@ public class ChestShopSign {
public static final Pattern[] SHOP_SIGN_PATTERN = {
Pattern.compile("^?[\\w -.:]*$"),
Pattern.compile("^[1-9][0-9]{0,6}$"),
Pattern.compile("^[1-9][0-9]{0,5}$"),
Pattern.compile("(?i)^[\\d.bs(free) :]+$"),
Pattern.compile("^[\\w? #:-]+$")
};