From b3851134c15c1f07fb91b59c4e119ed1f15416f6 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sat, 1 Mar 2025 10:20:43 -0500 Subject: [PATCH] fix logic issue --- src/p_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_user.c b/src/p_user.c index 04da1bf37..833963353 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -1200,7 +1200,7 @@ mobj_t *P_SpawnGhostMobj(mobj_t *mobj) ghost->spriteyoffset = mobj->spriteyoffset; if (mobj->flags2 & MF2_OBJECTFLIP) - ghost->flags |= MF2_OBJECTFLIP; + ghost->flags2 |= MF2_OBJECTFLIP; if (!(mobj->flags & MF_DONTENCOREMAP)) ghost->flags &= ~MF_DONTENCOREMAP;