fix(Core/Creature): Fix creature template movement field not loading
This commit is contained in:
parent
d66de393dc
commit
73b90a0cf9
1 changed files with 1 additions and 1 deletions
|
|
@ -657,7 +657,7 @@ void ObjectMgr::LoadCreatureTemplate(Field* fields, bool triggerHook)
|
|||
creatureTemplate.MovementType = uint32(fields[43].Get<uint8>());
|
||||
if (!fields[44].IsNull())
|
||||
{
|
||||
creatureTemplate.Movement.Ground = static_cast<CreatureGroundMovementType>(fields[48].Get<uint8>());
|
||||
creatureTemplate.Movement.Ground = static_cast<CreatureGroundMovementType>(fields[44].Get<uint8>());
|
||||
}
|
||||
|
||||
creatureTemplate.Movement.Swim = fields[45].Get<bool>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue