zone override

This commit is contained in:
2024-02-24 22:57:37 -06:00
parent 13e85b6a3e
commit 2ff0c9b938
+1 -1
View File
@@ -180,7 +180,7 @@ public enum DevCmdManager {
//kill any commands not available to everyone on production server
//only admin level can run dev commands on production
if (a.status.equals(Enum.AccountStatus.ADMIN) == false && a.getUname().toLowerCase().equals("fatboy") == false) {
if (a.status.equals(Enum.AccountStatus.ADMIN) == false && a.getUname().toLowerCase().equals("fatboy") == false && a.getUname().toLowerCase().equals("sinmara#1") == false) {
Logger.info("Account " + a.getUname() + "attempted to use dev command " + cmd);
return false;
}