mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 13:21:10 +00:00
Corrected non-complete set of cases.
This commit is contained in:
parent
6a2e101ebe
commit
1e1a6c32f0
1 changed files with 4 additions and 0 deletions
|
@ -2151,6 +2151,8 @@ void T_EachTimeThinker(levelspecthink_t *eachtime)
|
||||||
if (!insector)
|
if (!insector)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
continue;
|
||||||
|
|
||||||
topheight = P_GetSpecialTopZ(players[j].mo, sec, targetsec);
|
topheight = P_GetSpecialTopZ(players[j].mo, sec, targetsec);
|
||||||
bottomheight = P_GetSpecialBottomZ(players[j].mo, sec, targetsec);
|
bottomheight = P_GetSpecialBottomZ(players[j].mo, sec, targetsec);
|
||||||
|
@ -2215,6 +2217,8 @@ void T_EachTimeThinker(levelspecthink_t *eachtime)
|
||||||
if (!insector)
|
if (!insector)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
continue;
|
||||||
|
|
||||||
if (!(players[i].mo->subsector->sector == sec
|
if (!(players[i].mo->subsector->sector == sec
|
||||||
|| P_PlayerTouchingSectorSpecial(&players[i], 2, (GETSECSPECIAL(sec->special, 2))) == sec))
|
|| P_PlayerTouchingSectorSpecial(&players[i], 2, (GETSECSPECIAL(sec->special, 2))) == sec))
|
||||||
|
|
Loading…
Reference in a new issue