aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWyreth <32145860+Wyreth@users.noreply.github.com>2017-10-22 21:37:38 +0200
committerShauren <shauren.trinity@gmail.com>2017-10-22 21:37:38 +0200
commit21bd52cb995bb7ba6e0bee33317857a285ffd14c (patch)
tree74878ab4889856efdd149892fb3769cb83035fa5 /src
parentb4d632e57d72b1049c3a89a11b29192b27ebea9f (diff)
Core/SAI: allow to pause/resume waypoint for non-escorting NPCs (#20684)
Diffstat (limited to 'src')
-rw-r--r--src/server/game/AI/SmartScripts/SmartAI.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/server/game/AI/SmartScripts/SmartAI.cpp b/src/server/game/AI/SmartScripts/SmartAI.cpp
index 640b296d3a3..97350da0d4f 100644
--- a/src/server/game/AI/SmartScripts/SmartAI.cpp
+++ b/src/server/game/AI/SmartScripts/SmartAI.cpp
@@ -128,9 +128,6 @@ bool SmartAI::LoadPath(uint32 entry)
void SmartAI::PausePath(uint32 delay, bool forced)
{
- if (!HasEscortState(SMART_ESCORT_ESCORTING))
- return;
-
if (HasEscortState(SMART_ESCORT_PAUSED))
{
TC_LOG_ERROR("misc", "SmartAI::PausePath: Creature entry %u wanted to pause waypoint (current waypoint: %u) movement while already paused, ignoring.", me->GetEntry(), _currentWaypointNode);
@@ -155,9 +152,6 @@ void SmartAI::PausePath(uint32 delay, bool forced)
void SmartAI::StopPath(uint32 DespawnTime, uint32 quest, bool fail)
{
- if (!HasEscortState(SMART_ESCORT_ESCORTING))
- return;
-
if (quest)
mEscortQuestID = quest;
@@ -269,9 +263,6 @@ void SmartAI::ReturnToLastOOCPos()
void SmartAI::UpdatePath(const uint32 diff)
{
- if (!HasEscortState(SMART_ESCORT_ESCORTING))
- return;
-
if (_escortInvokerCheckTimer < diff)
{
if (!IsEscortInvokerInRange())