diff options
Diffstat (limited to 'src/Mobs/Monster.cpp')
-rw-r--r-- | src/Mobs/Monster.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp index db1150f67..03b809275 100644 --- a/src/Mobs/Monster.cpp +++ b/src/Mobs/Monster.cpp @@ -194,7 +194,7 @@ void cMonster::MoveToWayPoint(cChunk & a_Chunk) { if ( (IsOnGround() && (GetSpeed().SqrLength() <= 0.5)) || // If walking on the ground, we need to slow down first, otherwise we miss the jump - IsSwimming() + IsInWater() ) { m_bOnGround = false; @@ -221,7 +221,7 @@ void cMonster::MoveToWayPoint(cChunk & a_Chunk) { Distance *= 2.5f; } - else if (IsSwimming()) + else if (IsInWater()) { Distance *= 1.3f; } |