From 4a03a57c13033b4ce06527c35ad9f11ce999b2b0 Mon Sep 17 00:00:00 2001 From: SeventhSentinel Date: Wed, 27 Jun 2018 10:37:19 -0400 Subject: [PATCH] Up ghost tics on ballhog --- src/p_mobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_mobj.c b/src/p_mobj.c index b828c72ba..23fa23bf5 100644 --- a/src/p_mobj.c +++ b/src/p_mobj.c @@ -8122,7 +8122,7 @@ void P_MobjThinker(mobj_t *mobj) mobj->threshold--; break; case MT_BALLHOG: - P_SpawnGhostMobj(mobj)->fuse = 2; + P_SpawnGhostMobj(mobj)->fuse = 3; if (mobj->threshold > 0) mobj->threshold--; break;