Disable block players for now

this is causing issues on some v1 maps by making some lines impassible even if its just doing vertex slopes or flat alignment
This commit is contained in:
NepDisk 2024-09-07 02:43:36 -04:00
parent 9a9012b338
commit cc37e7bce9

View file

@ -1463,11 +1463,11 @@ boolean P_IsLineBlocking(const line_t *ld, const mobj_t *thing)
return true;
}
if (thing->player)
/*if (thing->player)
{
return ((ld->flags & ML_BLOCKPLAYERS) == ML_BLOCKPLAYERS);
}
else if (thing->flags & (MF_ENEMY|MF_BOSS))
else*/ if (thing->flags & (MF_ENEMY|MF_BOSS))
{
return ((ld->flags & ML_BLOCKMONSTERS) == ML_BLOCKMONSTERS);
}