Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed|Client|Hexen: Duplicated Fighter weapon effects
  • Loading branch information
skyjake committed Mar 26, 2013
1 parent b29b196 commit 11fc79e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doomsday/plugins/hexen/src/p_pspr.c
Expand Up @@ -696,6 +696,8 @@ void C_DECL A_FHammerAttack(player_t *plr, pspdef_t *psp)
float power;
float slope;

if(IS_CLIENT) return;

damage = 60 + (P_Random() & 63);
power = 10;
PuffType = MT_HAMMERPUFF;
Expand Down Expand Up @@ -759,6 +761,8 @@ void C_DECL A_FHammerThrow(player_t *plr, pspdef_t *psp)
{
mobj_t *pmo;

if(IS_CLIENT) return;

if(!plr->plr->mo->special1)
return;

Expand Down

0 comments on commit 11fc79e

Please sign in to comment.