From 1b1ed18a233419e40f7fe0b00e8b0887b0674891 Mon Sep 17 00:00:00 2001 From: bashermens <31279994+hermensbas@users.noreply.github.com> Date: Thu, 15 Jan 2026 00:42:09 +0100 Subject: [PATCH] Minor fix (#2015) --- src/strategy/rpg/NewRpgBaseAction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/rpg/NewRpgBaseAction.cpp b/src/strategy/rpg/NewRpgBaseAction.cpp index 94457568..f61c2b33 100644 --- a/src/strategy/rpg/NewRpgBaseAction.cpp +++ b/src/strategy/rpg/NewRpgBaseAction.cpp @@ -269,7 +269,7 @@ bool NewRpgBaseAction::CanInteractWithQuestGiver(Object* questGiver) if (!guid) return false; - if (!bot->IsInWorld()) + if (!bot->IsInWorld() || bot->IsDuringRemoveFromWorld()) return false; if (bot->IsInFlight())