From f97d494ffc90c3b3dde041564d6b2ca20ec22905 Mon Sep 17 00:00:00 2001 From: IntelligentQuantum Date: Thu, 7 May 2020 16:07:55 +0430 Subject: [PATCH] fix(Core/Account): GM Level 1 will not be hostile to players (#2807) --- src/server/game/Accounts/AccountMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Accounts/AccountMgr.cpp b/src/server/game/Accounts/AccountMgr.cpp index 268589521..3d61fde70 100644 --- a/src/server/game/Accounts/AccountMgr.cpp +++ b/src/server/game/Accounts/AccountMgr.cpp @@ -268,7 +268,7 @@ namespace AccountMgr bool IsGMAccount(uint32 gmlevel) { - return gmlevel >= SEC_GAMEMASTER && gmlevel <= SEC_CONSOLE; + return gmlevel >= SEC_MODERATOR && gmlevel <= SEC_CONSOLE; } bool IsAdminAccount(uint32 gmlevel)