Merge branch 'disablethisentirelybecauseitscausingproblems' into 'next'

Disable renderhitbox in multiplayer altogether

See merge request STJr/SRB2!2142
This commit is contained in:
sphere 2023-09-08 23:09:52 +00:00
commit 7debef176b

View file

@ -268,6 +268,9 @@ boolean R_ThingBoundingBoxVisible(mobj_t *thing)
{
INT32 cvmode = cv_renderhitbox.value;
if (multiplayer) // No hitboxes in multiplayer to avoid cheating
return false;
// Do not render bbox for these
switch (thing->type)
{