mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-26 04:30:55 +00:00
Send the slope thinkers list after the mobj list
Keeping the sector list before the mobj list stops the objects from "entering" or "floating" on slopes. However this induces a new slope adhesion problem in fast-moving slopes, so it is more desirable to leave the "indent/float-on" behavior for now since fixing this one seems like a big can of worms and falls off this branch's scope. Signed-off-by: Nev3r <apophycens@gmail.com>
This commit is contained in:
parent
a9110c0645
commit
62875d6728
1 changed files with 3 additions and 1 deletions
|
@ -65,8 +65,10 @@ typedef enum{
|
|||
THINK_LIMBO,
|
||||
THINK_POLYOBJ,
|
||||
THINK_MAIN,
|
||||
THINK_DYNSLOPE,
|
||||
THINK_MOBJ,
|
||||
#ifdef ESLOPE
|
||||
THINK_DYNSLOPE,
|
||||
#endif
|
||||
THINK_PRECIP,
|
||||
NUM_THINKERLISTS
|
||||
} thinklistnum_t; /**< Thinker lists. */
|
||||
|
|
Loading…
Reference in a new issue