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.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 985e40c1ab..4534a5020d 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -344,7 +344,7 @@ static void tutorial_inspect_kill()
}
}
-#ifdef MILESTONES
+#ifdef DGL_MILESTONES
static std::string milestone_kill_verb(int killer)
{
return (killer == KILL_RESET? "banished " : "killed ");
@@ -367,7 +367,7 @@ static void check_kill_milestone(const monsters *mons, int killer, int i)
+ ".");
}
}
-#endif // MILESTONES
+#endif // DGL_MILESTONES
void monster_die(monsters *monster, char killer, int i, bool silent)
{
@@ -381,7 +381,7 @@ void monster_die(monsters *monster, char killer, int i, bool silent)
bool in_transit = false;
const bool hard_reset = testbits(monster->flags, MF_HARD_RESET);
-#ifdef MILESTONES
+#ifdef DGL_MILESTONES
check_kill_milestone(monster, killer, i);
#endif