diff --git a/src/PlayerbotSecurity.cpp b/src/PlayerbotSecurity.cpp index 0a045cdb..8813cde4 100644 --- a/src/PlayerbotSecurity.cpp +++ b/src/PlayerbotSecurity.cpp @@ -181,7 +181,7 @@ bool PlayerbotSecurity::CheckLevelFor(PlayerbotSecurityLevel level, bool silent, { DenyReason reason = PLAYERBOT_DENY_NONE; PlayerbotSecurityLevel realLevel = LevelFor(from, &reason, ignoreGroup); - if (realLevel >= level) + if (realLevel >= level || from == bot) return true; PlayerbotAI* fromBotAI = GET_PLAYERBOT_AI(from);