Skip to content

Commit

Permalink
Merge branch 'disablethisentirelybecauseitscausingproblems' into 'next'
Browse files Browse the repository at this point in the history
Disable renderhitbox in multiplayer altogether

See merge request STJr/SRB2!2142
  • Loading branch information
ninesphere committed Sep 8, 2023
2 parents 0952d31 + 82568f8 commit 7debef1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/r_bbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 7debef1

Please sign in to comment.