summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2011-06-20 11:33:29 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2011-06-20 11:36:18 -0500
commitccf48bac12c3ed429daacc45c5176a1f72ccbe93 (patch)
tree1d840c42e366dae81ec9665a726d1fe122106bf0 /crawl-ref/source/notes.cc
parent69219ea249bbf5277bd1eff7f8457aa6ae66ea53 (diff)
downloadcrawl-ref-ccf48bac12c3ed429daacc45c5176a1f72ccbe93.tar.gz
crawl-ref-ccf48bac12c3ed429daacc45c5176a1f72ccbe93.zip
Rename MONS_(PANDEMONIUM|HELL)_DEMON to MONS_(PANDEMONIUM|HELL)_LORD.
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index 9cae0952e1..4c973a5947 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -419,7 +419,7 @@ std::string Note::describe(bool when, bool where, bool what) const
if (type == NOTE_SEEN_MONSTER || type == NOTE_KILL_MONSTER)
{
- if (what && first == MONS_PANDEMONIUM_DEMON)
+ if (what && first == MONS_PANDEMONIUM_LORD)
result << " the pandemonium lord";
}
return result.str();