Revert "Replace assert with return in slidemove old"
This reverts commit 95eea4d1af.
This commit is contained in:
parent
9541e4fb52
commit
8b9bead8ba
1 changed files with 1 additions and 2 deletions
|
|
@ -3519,8 +3519,7 @@ void P_SlideMoveOLD(mobj_t *mo)
|
||||||
|
|
||||||
memset(&junk, 0x00, sizeof(junk));
|
memset(&junk, 0x00, sizeof(junk));
|
||||||
|
|
||||||
if (P_MobjWasRemoved(mo))
|
I_Assert(!P_MobjWasRemoved(mo));
|
||||||
return;
|
|
||||||
|
|
||||||
if (g_tm.hitthing && mo->z + mo->height > g_tm.hitthing->z && mo->z < g_tm.hitthing->z + g_tm.hitthing->height)
|
if (g_tm.hitthing && mo->z + mo->height > g_tm.hitthing->z && mo->z < g_tm.hitthing->z + g_tm.hitthing->height)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue