commit c2a82e2430748d3ddda9f6990ecf96a92dec4656
Author: James Haley <haleyjd@hotmail.com>
AuthorDate: Sun Mar 6 11:51:26 2016 -0600
Commit: James Haley <haleyjd@hotmail.com>
CommitDate: Sun Mar 6 11:51:26 2016 -0600
Verified changes needed to P_KillMobj
---
src/strife/p_inter.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/strife/p_inter.c b/src/strife/p_inter.c
index 47f32ee2..b92cacfd 100644
--- a/src/strife/p_inter.c
+++ b/src/strife/p_inter.c
@@ -852,9 +852,9 @@ void P_KillMobj(mobj_t* source, mobj_t* target)
}
}
- target->flags &= ~MF_SOLID;
+ //target->flags &= ~MF_SOLID;
target->player->playerstate = PST_DEAD;
- target->player->mo->momz = 5*FRACUNIT; // [STRIFE]: small hop!
+ target->player->mo->momz += 5*FRACUNIT; // [STRIFE]: small hop!
P_DropWeapon(target->player);
if(target->player == &players[consoleplayer]