K_JustBumpedException: Don't allow phasing through MF_PUSHABLE

Fixes the snowman wedge-inside issue
This commit is contained in:
toaster 2023-12-28 17:39:41 +00:00
parent a7e8a4d5ee
commit d14015ca21

View file

@ -833,6 +833,9 @@ static boolean K_JustBumpedException(mobj_t *mobj)
break;
}
if (mobj->flags & MF_PUSHABLE)
return true;
return false;
}