summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index a03f66ff8a..9f43ad1427 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2954,6 +2954,10 @@ std::string _status_mut_abilities()
case MUT_TORMENT_RESISTANCE:
current = "torment resistance";
break;
+ case MUT_STOCHASTIC_TORMENT_RESISTANCE:
+ snprintf(info, INFO_SIZE, "%d%% torment resistance", level*20);
+ current = info;
+ break;
case MUT_NEGATIVE_ENERGY_RESISTANCE:
snprintf(info, INFO_SIZE, "life protection %d", level);
current = info;