From b9c3f72112bca8363b54c475d93dd03d294d56e7 Mon Sep 17 00:00:00 2001
From: MascaraSnake <jonassauer27@gmail.com>
Date: Sat, 5 Oct 2019 20:10:07 +0200
Subject: [PATCH] Grouped MFE_TOUCHLAVA together with the other liquid-related
 flags

---
 src/p_mobj.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/p_mobj.h b/src/p_mobj.h
index ae2ff6c1e3..94fcc29879 100644
--- a/src/p_mobj.h
+++ b/src/p_mobj.h
@@ -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;
 
-- 
GitLab