diff --git a/zone/bot_command.cpp b/zone/bot_command.cpp index 12b50e9d2..558889962 100644 --- a/zone/bot_command.cpp +++ b/zone/bot_command.cpp @@ -2973,7 +2973,7 @@ void bot_command_follow(Client *c, const Seperator *sep) } else { if (c->GetTarget()) { - if (c->IsAttackAllowed(c->GetTarget())) { + if (c != c->GetTarget() && c->IsAttackAllowed(c->GetTarget())) { c->Message(m_fail, "You must a friendly mob to use this command"); return; }