Skip to content

Commit

Permalink
Fixed serpent staff's alternate attack against shielding centaur
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Jul 21, 2017
1 parent 714ada0 commit b1d1ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/hexen/clericstaff.txt
Expand Up @@ -82,7 +82,7 @@ class CWeapStaff : ClericWeapon
{
angle = t.angleFromSource;
if (((t.linetarget.player && (!t.linetarget.IsTeammate(self) || level.teamdamage != 0)) || t.linetarget.bIsMonster)
&& (!t.linetarget.bDormant && !bInvulnerable))
&& (!t.linetarget.bDormant && !t.linetarget.bInvulnerable))
{
int newLife = player.health + (damage >> 3);
newLife = newLife > max ? max : newLife;
Expand Down

0 comments on commit b1d1ac1

Please sign in to comment.