Navigation Menu

Skip to content

Commit

Permalink
Correct a value (|amethyst)
Browse files Browse the repository at this point in the history
A dumb error in 85fd691.
  • Loading branch information
isloat committed Dec 19, 2016
1 parent 85fd691 commit 10ed074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawl-ref/source/attack.cc
Expand Up @@ -1131,7 +1131,7 @@ int attack::player_stat_modify_damage(int damage)
if (you.strength() > 10)
dammod += (random2(you.strength() - 9) * 2);
else if (you.strength() < 10)
dammod -= (random2(9 - you.strength()) * 3);
dammod -= (random2(11 - you.strength()) * 3);

damage *= dammod;
damage /= 39;
Expand Down

0 comments on commit 10ed074

Please sign in to comment.