summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/direct.cc')
-rw-r--r--crawl-ref/source/direct.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index 1f745b1a78..ce747fd17d 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -1392,6 +1392,9 @@ static void describe_mons_enchantment(const monsters &mons,
// internally valid.
if (paralysed && (ench.ench == ENCH_SLOW || ench.ench == ENCH_HASTE))
return;
+
+ if (ench.ench == ENCH_HASTE && mons.has_ench(ENCH_BERSERK))
+ return;
strcpy(info, mons_pronoun(mons.type, PRONOUN_CAP));
@@ -1412,6 +1415,9 @@ static void describe_mons_enchantment(const monsters &mons,
case ENCH_SLOW:
strcat(info, " is moving slowly.");
break;
+ case ENCH_BERSERK:
+ strcat(info, " is berserk!");
+ break;
case ENCH_HASTE:
strcat(info, " is moving very quickly.");
break;