Fix sethome perm check

This commit is contained in:
Trent Hensler 2018-02-12 10:59:45 -08:00
parent a034030ba5
commit ea7213cbd7
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public class CmdSethome extends FCommand {
// Can the player set the home for this faction?
// Check for ALLOW access as well before we check for role.
if (faction == myFaction && access != Access.ALLOW) {
if (!Permission.SETHOME_ANY.has(sender) && !(Role.MODERATOR.value > fme.getRole().value)) {
if (!Permission.SETHOME_ANY.has(sender) && !(assertMinRole(Role.MODERATOR))) {
return;
}
} else {