summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 2453580e1c..c8fc8ba202 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2603,6 +2603,9 @@ static std::string _monster_stat_description(const monsters& mon)
for (unsigned int i = 0; i < ARRAYSZ(resists); ++i)
{
int level = resist.get_resist_level(resists[i]);
+ if (resists[i] == MR_RES_FIRE && resist.hellfire)
+ level = 3;
+
if (level != 0)
{
const char* attackname = _get_resist_name(resists[i]);