Skip to content

Commit

Permalink
Hexen: Fixed duplicated Fighter Axe lightning on client
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Dec 24, 2011
1 parent fee83ff commit 43deba9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doomsday/plugins/jhexen/src/p_pspr.c
Expand Up @@ -1203,6 +1203,8 @@ void C_DECL A_FAxeAttack(player_t *plr, pspdef_t *psp)
float slope;
int damage, useMana;

if(IS_CLIENT) return;

damage = 40 + (P_Random() & 15) + (P_Random() & 7);
power = 0;
if(plr->ammo[AT_BLUEMANA].owned > 0)
Expand Down

0 comments on commit 43deba9

Please sign in to comment.