We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can I limit groups protection? Like normal players has 1 chest, vip 5 chest, ...
The text was updated successfully, but these errors were encountered:
This would be awesome to see, provided the person comes back... I was thinking of adding perhaps a permission node for groups. Example:
At the time of writing I'm not sure how easily this can be done in Spigot/Paper/Etc. I was successful in Sponge once.
If its feasible and the author returns ill try submitting a PR for it
Sorry, something went wrong.
Ow! Nice to see people interessing =)
On bukkit, you can loop permissions, and check the permission node to get value. Something like that:
for(PermissionAttachmentInfo permission : player.getEffectivePermissions()) { if(permission.getPermission().startsWith("lockettepro.limit.") && permission.getValue()) { int limit = Integer.parseInt(permission.getPermission().split(".")[2]); } }
ps: sorry if that not run
No branches or pull requests
Can I limit groups protection? Like normal players has 1 chest, vip 5 chest, ...
The text was updated successfully, but these errors were encountered: