diff options
Diffstat (limited to 'src/game/Creature.cpp')
| -rw-r--r-- | src/game/Creature.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index 384eec4ebdb..8868b24c768 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -696,6 +696,8 @@ void Creature::DoFleeToGetAssistance() cell_lock->Visit(cell_lock, grid_creature_searcher, *GetMap(), *this, radius); SetNoSearchAssistance(true); + UpdateSpeed(MOVE_RUN, false); + if(!pCreature) //SetFeared(true, getVictim()->GetGUID(), 0 ,sWorld.getConfig(CONFIG_CREATURE_FAMILY_FLEE_DELAY)); //TODO: use 31365 @@ -1464,7 +1466,11 @@ void Creature::setDeathState(DeathState s) if ( LootTemplates_Skinning.HaveLootFor(GetCreatureInfo()->SkinLootId) ) SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_SKINNABLE); - SetNoSearchAssistance(false); + if (HasSearchedAssistance()) + { + SetNoSearchAssistance(false); + UpdateSpeed(MOVE_RUN, false); + } //Dismiss group if is leader if(m_formation && m_formation->getLeader() == this) |
