Fixed failed assertation
This was caused by a monster with a negative Y-axis. Fixes #2336
This commit is contained in:
parent
47604cd914
commit
19b65ce357
@ -451,6 +451,8 @@ void cMonster::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
|||||||
m_Target = nullptr;
|
m_Target = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (GetPosY() >= 0)
|
||||||
|
{
|
||||||
// Process the undead burning in daylight.
|
// Process the undead burning in daylight.
|
||||||
HandleDaylightBurning(*Chunk, WouldBurnAt(GetPosition(), *Chunk));
|
HandleDaylightBurning(*Chunk, WouldBurnAt(GetPosition(), *Chunk));
|
||||||
if (TickPathFinding(*Chunk))
|
if (TickPathFinding(*Chunk))
|
||||||
@ -474,6 +476,7 @@ void cMonster::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
|||||||
MoveToWayPoint(*Chunk);
|
MoveToWayPoint(*Chunk);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
SetPitchAndYawFromDestination();
|
SetPitchAndYawFromDestination();
|
||||||
HandleFalling();
|
HandleFalling();
|
||||||
|
Loading…
Reference in New Issue
Block a user