Skip to content
Snippets Groups Projects
Commit 82568f81 authored by candelavla's avatar candelavla
Browse files

Disable renderhitbox in multiplaye altogether

parent 0952d313
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