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 STJr/SRB2!2142
parents 0952d313 82568f81
No related branches found
No related tags found
1 merge request!2142Disable renderhitbox in multiplayer altogether
......@@ -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