mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 04:41:23 +00:00
Fix airbob sectors fucking up when below 0 z-height.
This commit is contained in:
parent
57a7a3bed8
commit
a1620b709e
1 changed files with 2 additions and 4 deletions
|
@ -5216,13 +5216,11 @@ static void P_AddOldAirbob(sector_t *sec, line_t *sourceline, boolean noadjust)
|
||||||
airbob->vars[2] = FRACUNIT;
|
airbob->vars[2] = FRACUNIT;
|
||||||
|
|
||||||
if (noadjust)
|
if (noadjust)
|
||||||
{
|
|
||||||
airbob->vars[7] = airbob->sector->ceilingheight-16*FRACUNIT;
|
airbob->vars[7] = airbob->sector->ceilingheight-16*FRACUNIT;
|
||||||
airbob->vars[6] = airbob->vars[7]
|
|
||||||
- (sec->ceilingheight - sec->floorheight);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
airbob->vars[7] = airbob->sector->ceilingheight - P_AproxDistance(sourceline->dx, sourceline->dy);
|
airbob->vars[7] = airbob->sector->ceilingheight - P_AproxDistance(sourceline->dx, sourceline->dy);
|
||||||
|
airbob->vars[6] = airbob->vars[7]
|
||||||
|
- (sec->ceilingheight - sec->floorheight);
|
||||||
|
|
||||||
airbob->vars[3] = airbob->vars[2];
|
airbob->vars[3] = airbob->vars[2];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue