Change hard limit to one million

This commit is contained in:
Phoenix616 2020-04-17 14:51:37 +01:00
parent bb17cc35a0
commit e8034e20b0
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,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? #:-]+$")
};