Skip to content

Commit

Permalink
fix(Core/Creature): Creature Scale. (#19722)
Browse files Browse the repository at this point in the history
Update Creature.cpp
  • Loading branch information
PkllonG committed Sep 5, 2024
1 parent d1f77ae commit 9dae875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Entities/Creature/Creature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3480,7 +3480,7 @@ void Creature::UpdateMovementFlags()

float Creature::GetNativeObjectScale() const
{
return GetCreatureTemplate()->scale;
return ObjectMgr::ChooseDisplayId(GetCreatureTemplate())->DisplayScale;
}

void Creature::SetObjectScale(float scale)
Expand Down

0 comments on commit 9dae875

Please sign in to comment.