From 85ebda1b5acfb3cb0df39d38d095d547520217c7 Mon Sep 17 00:00:00 2001 From: KimLS Date: Thu, 3 Jan 2019 18:33:22 -0800 Subject: [PATCH] GMMove minor logic change so clients who are not LD/Charmed will be affected --- zone/mob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/mob.cpp b/zone/mob.cpp index d38121b06..89d2ff1de 100644 --- a/zone/mob.cpp +++ b/zone/mob.cpp @@ -1665,7 +1665,7 @@ void Mob::ShowBuffList(Client* client) { } void Mob::GMMove(float x, float y, float z, float heading, bool SendUpdate) { - if (IsCorpse()) { + if (IsCorpse() || (IsClient() && !IsAIControlled())) { m_Position.x = x; m_Position.y = y; m_Position.z = z;