Merge branch 'bubble-b-gone' into 'master'

Define out WPZ turbine bubbles until we actually know why they false-positive

See merge request KartKrew/Kart!1646
This commit is contained in:
Oni 2023-11-19 05:38:24 +00:00
commit 6c678bf347

View file

@ -93,6 +93,8 @@ static void Obj_WPZTurbineUpdate(mobj_t *mo)
}
}
// Not my code, no clue why this doesn't work, John Fucking Madden
#if 0
// bubbles if we're underwater
if (mo->z < mo->watertop && leveltime%10 == 0)
{
@ -119,6 +121,7 @@ static void Obj_WPZTurbineUpdate(mobj_t *mo)
bubble->movecount = bubbleradius;
P_SetTarget(&bubble->tracer, mo);
}
#endif
}
void Obj_WPZTurbineThinker(mobj_t *mo)