mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-03 08:22:06 +00:00
A_LavafallLava: prevent a modulus by 0
This commit is contained in:
parent
1b66373a4a
commit
46ef724942
1 changed files with 1 additions and 1 deletions
|
@ -14395,7 +14395,7 @@ void A_LavafallLava(mobj_t *actor)
|
|||
if (LUA_CallAction(A_LAVAFALLLAVA, actor))
|
||||
return;
|
||||
|
||||
if ((40 - actor->fuse) % (2*(actor->scale >> FRACBITS)))
|
||||
if ((40 - actor->fuse) % max(2*(actor->scale >> FRACBITS), 1)) // avoid crashes if actor->scale < FRACUNIT
|
||||
return;
|
||||
|
||||
// Don't spawn lava unless a player is nearby.
|
||||
|
|
Loading…
Reference in a new issue