Grouped MFE_TOUCHLAVA together with the other liquid-related flags

This commit is contained in:
MascaraSnake 2019-10-05 20:10:07 +02:00
parent 16d077fde3
commit b9c3f72112

View file

@ -233,17 +233,17 @@ typedef enum
MFE_VERTICALFLIP = 1<<5,
// Goo water
MFE_GOOWATER = 1<<6,
// The mobj is touching a lava block
MFE_TOUCHLAVA = 1<<7,
// Mobj was already pushed this tic
MFE_PUSHED = 1<<7,
MFE_PUSHED = 1<<8,
// Mobj was already sprung this tic
MFE_SPRUNG = 1<<8,
MFE_SPRUNG = 1<<9,
// Platform movement
MFE_APPLYPMOMZ = 1<<9,
MFE_APPLYPMOMZ = 1<<10,
// Compute and trigger on mobj angle relative to tracer
// See Linedef Exec 457 (Track mobj angle to point)
MFE_TRACERANGLE = 1<<10,
// The mobj is touching a lava block
MFE_TOUCHLAVA = 1<<11,
MFE_TRACERANGLE = 1<<11,
// free: to and including 1<<15
} mobjeflag_t;