Skip to content

Commit

Permalink
Verified changes needed to P_KillMobj
Browse files Browse the repository at this point in the history
  • Loading branch information
haleyjd committed Mar 6, 2016
1 parent 899bc17 commit c2a82e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/strife/p_inter.c
Expand Up @@ -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]
Expand Down

0 comments on commit c2a82e2

Please sign in to comment.