diff options
Diffstat (limited to 'src/game/Creature.cpp')
-rw-r--r-- | src/game/Creature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index 818e01bb396..9fcd1cd48ac 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -1477,7 +1477,7 @@ bool Creature::FallGround() float x, y, z; GetPosition(x, y, z); - float ground_Z = GetMap()->GetVmapHeight(x, y, z, true); + float ground_Z = GetMap()->GetVmapHeight(x, y, z); if (fabs(ground_Z - z) < 0.1f) return false; |