Skip to content
Snippets Groups Projects
Commit 7debef17 authored by sphere's avatar sphere
Browse files

Merge branch 'disablethisentirelybecauseitscausingproblems' into 'next'

Disable renderhitbox in multiplayer altogether

See merge request !2142
parents 0952d313 82568f81
No related branches found
No related tags found
No related merge requests found
...@@ -268,6 +268,9 @@ boolean R_ThingBoundingBoxVisible(mobj_t *thing) ...@@ -268,6 +268,9 @@ boolean R_ThingBoundingBoxVisible(mobj_t *thing)
{ {
INT32 cvmode = cv_renderhitbox.value; INT32 cvmode = cv_renderhitbox.value;
if (multiplayer) // No hitboxes in multiplayer to avoid cheating
return false;
// Do not render bbox for these // Do not render bbox for these
switch (thing->type) switch (thing->type)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment