fix(Core/Account): GM Level 1 will not be hostile to players (#2807)

This commit is contained in:
IntelligentQuantum 2020-05-07 16:07:55 +04:30 committed by GitHub
parent 4266d1f764
commit f97d494ffc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)