Skip to content
Snippets Groups Projects
Commit 82568f81 authored by katsy's avatar katsy
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)
{
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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment