diff --git a/zone/mob.cpp b/zone/mob.cpp index a455932e6..da438671d 100644 --- a/zone/mob.cpp +++ b/zone/mob.cpp @@ -9777,6 +9777,10 @@ bool Mob::IsInGroupOrRaid(Mob *other, bool sameRaidGroup) { return false; } + if (this == other) { + return true; + } + auto* r = GetRaid(); auto* rO = other->GetRaid();