summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player-stats.cc
diff options
context:
space:
mode:
authorBrendan Hickey <brendan@bhickey.net>2013-08-25 19:07:48 -0700
committerBrendan Hickey <brendan@bhickey.net>2013-08-25 19:15:54 -0700
commit3bcad43c5d95fa50ab9da07a7cface1be324e4f8 (patch)
tree776d5f7fd69f1e7828156599039cc4dbd66db6ed /crawl-ref/source/player-stats.cc
parent0b72a8e84ca8dcd203335ee5ca3f2da1ad9033e4 (diff)
downloadcrawl-ref-3bcad43c5d95fa50ab9da07a7cface1be324e4f8.tar.gz
crawl-ref-3bcad43c5d95fa50ab9da07a7cface1be324e4f8.zip
Set boring stat mutation probabilities to zero.
MUT_STRONG_STIFF and MUT_FLEXIBLE_WEAK probabilities are hereby set to zero in preparation for removal.
Diffstat (limited to 'crawl-ref/source/player-stats.cc')
-rw-r--r--crawl-ref/source/player-stats.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/player-stats.cc b/crawl-ref/source/player-stats.cc
index 9103274221..7e924bc2c3 100644
--- a/crawl-ref/source/player-stats.cc
+++ b/crawl-ref/source/player-stats.cc
@@ -373,8 +373,10 @@ static int _strength_modifier()
// mutations
result += player_mutation_level(MUT_STRONG)
- player_mutation_level(MUT_WEAK);
+#if TAG_MAJOR_VERSION == 34
result += player_mutation_level(MUT_STRONG_STIFF)
- player_mutation_level(MUT_FLEXIBLE_WEAK);
+#endif
result -= player_mutation_level(MUT_THIN_SKELETAL_STRUCTURE)
? player_mutation_level(MUT_THIN_SKELETAL_STRUCTURE) - 1 : 0;
@@ -448,9 +450,10 @@ static int _dex_modifier()
// mutations
result += player_mutation_level(MUT_AGILE)
- player_mutation_level(MUT_CLUMSY);
+#if TAG_MAJOR_VERSION == 34
result += player_mutation_level(MUT_FLEXIBLE_WEAK)
- player_mutation_level(MUT_STRONG_STIFF);
-
+#endif
result += 2 * player_mutation_level(MUT_THIN_SKELETAL_STRUCTURE);
result -= player_mutation_level(MUT_ROUGH_BLACK_SCALES);