Changed parameter name for hasAccess

This commit is contained in:
ProSavage 2018-09-04 18:33:13 -05:00
parent 99a747adcb
commit e1a51b9488
1 changed files with 4 additions and 4 deletions

View File

@ -56,9 +56,9 @@ public abstract class FCommand extends MCommand<P> {
} }
return true; return true;
} }
public boolean hasAccess(boolean checkifAdmin) { public boolean hasAccess(boolean isAdmin) {
if (this.actionPermission == null || this.fme == null) return false; if (this.actionPermission == null || this.fme == null) return false;
if (!this.fme.isAdminBypassing() && checkifAdmin) { if (!this.fme.isAdminBypassing() && isAdmin) {
Access access = myFaction.getAccess(this.fme, this.actionPermission); Access access = myFaction.getAccess(this.fme, this.actionPermission);
if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) { if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) {
return false; return false;
@ -76,9 +76,9 @@ public abstract class FCommand extends MCommand<P> {
} }
return true; return true;
} }
public boolean hasAccess(PermissableAction perm, boolean checkifAdmin) { public boolean hasAccess(PermissableAction perm, boolean isAdmin) {
if (this.permission == null || this.fme == null) return false; if (this.permission == null || this.fme == null) return false;
if (!this.fme.isAdminBypassing() && checkifAdmin) { if (!this.fme.isAdminBypassing() && isAdmin) {
Access access = myFaction.getAccess(this.fme, perm); Access access = myFaction.getAccess(this.fme, perm);
if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) { if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) {
return false; return false;