summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player-stats.cc
diff options
context:
space:
mode:
authorelliptic <hyperelliptical@gmail.com>2012-11-25 18:15:56 -0500
committerelliptic <hyperelliptical@gmail.com>2012-11-25 18:15:56 -0500
commit528ec636787e8e3de0ea5f7468e3ff5e0d3d0535 (patch)
tree90132bf700a26e9a1e5178b838c47e2b3d2c604e /crawl-ref/source/player-stats.cc
parentde3fb26c28f66f85dcc14504330281c502b3cd8d (diff)
downloadcrawl-ref-528ec636787e8e3de0ea5f7468e3ff5e0d3d0535.tar.gz
crawl-ref-528ec636787e8e3de0ea5f7468e3ff5e0d3d0535.zip
Tweak scales mutation numbers.
Mainly small buffs of +1 AC to the weaker scales.
Diffstat (limited to 'crawl-ref/source/player-stats.cc')
-rw-r--r--crawl-ref/source/player-stats.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/player-stats.cc b/crawl-ref/source/player-stats.cc
index df8df90458..4e8a62cdbd 100644
--- a/crawl-ref/source/player-stats.cc
+++ b/crawl-ref/source/player-stats.cc
@@ -375,7 +375,8 @@ static int _strength_modifier()
- player_mutation_level(MUT_WEAK);
result += player_mutation_level(MUT_STRONG_STIFF)
- player_mutation_level(MUT_FLEXIBLE_WEAK);
- result -= player_mutation_level(MUT_THIN_SKELETAL_STRUCTURE);
+ result -= player_mutation_level(MUT_THIN_SKELETAL_STRUCTURE)
+ ? player_mutation_level(MUT_THIN_SKELETAL_STRUCTURE) - 1 : 0;
// transformations
switch (you.form)