summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 01a8d55272..294ef6781c 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -957,6 +957,7 @@ static void _mummy_curse(monsters* monster, killer_type killer, int index)
switch (monster->type)
{
+ case MONS_MENKAURE:
case MONS_MUMMY: pow = 1; break;
case MONS_GUARDIAN_MUMMY: pow = 3; break;
case MONS_MUMMY_PRIEST: pow = 8; break;
@@ -990,7 +991,7 @@ static void _mummy_curse(monsters* monster, killer_type killer, int index)
if (!target->alive())
return;
- if (monster->type == MONS_MUMMY && YOU_KILL(killer))
+ if ((monster->type == MONS_MUMMY || monster->type == MONS_MENKAURE) && YOU_KILL(killer))
curse_an_item(true);
else
{