diff options
author | Blaymoira <none@none> | 2009-03-14 10:14:22 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2009-03-14 10:14:22 +0100 |
commit | 32604a75f694fa7182961a540a79c9a5060d0348 (patch) | |
tree | 75f2e10acccf9939b0930efc1bced5e6799b2801 /src | |
parent | 8e846418cabb4f9b384eb6bc77ef935318e8149d (diff) |
*Fixed creature following in dungeons
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/CreatureGroups.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/CreatureGroups.cpp b/src/game/CreatureGroups.cpp index 6b69a9102dd..55b56e0b94e 100644 --- a/src/game/CreatureGroups.cpp +++ b/src/game/CreatureGroups.cpp @@ -187,7 +187,7 @@ void CreatureGroup::SetMemberDestination(Creature *member) return; float x,y,z; - uint32 lowguid = member->GetGUIDLow(); + uint32 lowguid = member->GetDBTableGUIDLow(); UNORDERED_MAP<uint32, FormationMember*>::iterator itr2 = CreatureGroupMap.find(lowguid); |