Check if vault has group support in case no permission plugin is found or used permission plugin does not support groups
This commit is contained in:
parent
ced36df08f
commit
3c23e1078d
@ -315,7 +315,7 @@ public class P extends MPlugin {
|
||||
}
|
||||
|
||||
public String getPrimaryGroup(OfflinePlayer player) {
|
||||
return perms == null ? " " : perms.getPrimaryGroup(Bukkit.getWorlds().get(0).toString(), player);
|
||||
return perms == null || !perms.hasGroupSupport() ? " " : perms.getPrimaryGroup(Bukkit.getWorlds().get(0).toString(), player);
|
||||
}
|
||||
|
||||
public void debug(Level level, String s) {
|
||||
|
Loading…
Reference in New Issue
Block a user