mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-03 17:01:19 +00:00
Merge branch 'fixghostflag' into 'next'
Fix MF2_OBJECTFLIP being applied to flags instead of flags2 in P_SpawnGhostMobj See merge request KartKrew/Kart-Public!364
This commit is contained in:
commit
f6889c01f1
1 changed files with 1 additions and 1 deletions
|
@ -1683,7 +1683,7 @@ mobj_t *P_SpawnGhostMobj(mobj_t *mobj)
|
|||
ghost->skin = mobj->skin;
|
||||
|
||||
if (mobj->flags2 & MF2_OBJECTFLIP)
|
||||
ghost->flags |= MF2_OBJECTFLIP;
|
||||
ghost->flags2 |= MF2_OBJECTFLIP;
|
||||
|
||||
if (!(mobj->flags & MF_DONTENCOREMAP))
|
||||
mobj->flags &= ~MF_DONTENCOREMAP;
|
||||
|
|
Loading…
Reference in a new issue