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.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index a36b6ffe45..40f16abf09 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -1741,8 +1741,11 @@ static std::string describe_mons_enchantment(const monsters &mons,
if (paralysed && (ench.ench == ENCH_SLOW || ench.ench == ENCH_HASTE))
return "";
- if (ench.ench == ENCH_HASTE && mons.has_ench(ENCH_BERSERK))
+ if ((ench.ench == ENCH_HASTE || ench.ench == ENCH_BATTLE_FRENZY)
+ && mons.has_ench(ENCH_BERSERK))
+ {
return "";
+ }
switch (ench.ench)
{
@@ -1758,6 +1761,8 @@ static std::string describe_mons_enchantment(const monsters &mons,
return "moving slowly";
case ENCH_BERSERK:
return "berserk";
+ case ENCH_BATTLE_FRENZY:
+ return "consumed by blood-lust";
case ENCH_HASTE:
return "moving very quickly";
case ENCH_CONFUSION: