From 2f62c0ff6b51ce5070c61d3645aeb252bc7e8cc8 Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 6 Nov 2023 15:00:38 +0000 Subject: [PATCH] P_SpawnGhostMobj: Also copy scalespeed --- src/p_user.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_user.c b/src/p_user.c index 34ffc414c..b348ad7b9 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -1109,6 +1109,7 @@ mobj_t *P_SpawnGhostMobj(mobj_t *mobj) P_SetTarget(&ghost->target, mobj); P_SetScale(ghost, mobj->scale); + ghost->scalespeed = mobj->scalespeed; ghost->destscale = mobj->scale; if (mobj->eflags & MFE_VERTICALFLIP)