#1417 Add permission node to allow chat before login
This commit is contained in:
@@ -34,7 +34,12 @@ public enum PlayerStatePermission implements PermissionNode {
|
||||
/**
|
||||
* Permission to bypass the GeoIp country code check.
|
||||
*/
|
||||
BYPASS_COUNTRY_CHECK("authme.bypasscountrycheck", DefaultPermission.NOT_ALLOWED);
|
||||
BYPASS_COUNTRY_CHECK("authme.bypasscountrycheck", DefaultPermission.NOT_ALLOWED),
|
||||
|
||||
/**
|
||||
* Permission to send chat messages before being logged in.
|
||||
*/
|
||||
ALLOW_CHAT_BEFORE_LOGIN("authme.allowchatbeforelogin", DefaultPermission.NOT_ALLOWED);
|
||||
|
||||
/**
|
||||
* The permission node.
|
||||
@@ -42,7 +47,7 @@ public enum PlayerStatePermission implements PermissionNode {
|
||||
private String node;
|
||||
|
||||
/**
|
||||
* The default permission level
|
||||
* The default permission level.
|
||||
*/
|
||||
private DefaultPermission defaultPermission;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user