mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-24 11:37:58 +01:00
Disallow worldname to have . or /
This commit is contained in:
parent
0e9fe0c3ec
commit
a14b822de8
@ -18,7 +18,7 @@ import java.util.regex.Pattern;
|
||||
*/
|
||||
public class WorldNameChecker {
|
||||
|
||||
private static final Pattern WORLD_NAME_PATTERN = Pattern.compile("[a-zA-Z0-9/._-]+");
|
||||
private static final Pattern WORLD_NAME_PATTERN = Pattern.compile("[a-zA-Z0-9_-]+");
|
||||
private static final Set<String> BLACKLIST_NAMES = Collections.unmodifiableSet(new HashSet<String>() {{
|
||||
add("plugins");
|
||||
add("logs");
|
||||
|
Loading…
Reference in New Issue
Block a user