Skip to content

Commit

Permalink
Fixed: bug #2649376 "Low Damage with Timons Axe and Gauntlets" (see h…
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Mar 10, 2009
1 parent 2304db4 commit 85efb34
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doomsday/plugins/jhexen/src/p_pspr.c
Expand Up @@ -1202,10 +1202,10 @@ void C_DECL A_FPunchAttack(player_t *plr, pspdef_t *psp)
slope = P_AimLineAttack(mo, angle, 2 * MELEERANGE);
if(lineTarget)
{
plr->plr->mo->special1++;
mo->special1++;
if(mo->special1 == 3)
{
damage /= 2;
damage *= 2;
power = 6;
PuffType = MT_HAMMERPUFF;
}
Expand All @@ -1227,7 +1227,7 @@ void C_DECL A_FPunchAttack(player_t *plr, pspdef_t *psp)
mo->special1++;
if(mo->special1 == 3)
{
damage /= 2;
damage *= 2;
power = 6;
PuffType = MT_HAMMERPUFF;
}
Expand Down Expand Up @@ -1272,7 +1272,7 @@ void C_DECL A_FAxeAttack(player_t *plr, pspdef_t *psp)
power = 0;
if(plr->ammo[AT_BLUEMANA].owned > 0)
{
damage /= 2;
damage *= 2;
power = 6;
PuffType = MT_AXEPUFF_GLOW;
useMana = 1;
Expand Down

0 comments on commit 85efb34

Please sign in to comment.