From 09c3c5857591169290007dcc5d500e09df235517 Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Thu, 21 Sep 2017 17:38:42 -0400 Subject: [PATCH] Obligatory "fixing a very tiny and very stupid mistake" commit :p --- src/p_enemy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_enemy.c b/src/p_enemy.c index a63edd7d5..797586b49 100644 --- a/src/p_enemy.c +++ b/src/p_enemy.c @@ -7969,7 +7969,7 @@ void A_GhostMe(mobj_t *actor) return; #endif ghost = P_SpawnGhostMobj(actor); - if (ghost && locvar1 > 1) + if (ghost && locvar1 > 0) ghost->fuse = locvar1; }