summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-24 11:19:58 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-24 11:19:58 -0500
commitc1ab37674e9eeb63f703e8c8ef44c0ed50be9720 (patch)
treee3ecdd167c3ea63ca2251d71269e2320278f36d2 /crawl-ref
parent00465cc2dc4d3e43f73810d51c64cdd67514c61b (diff)
downloadcrawl-ref-c1ab37674e9eeb63f703e8c8ef44c0ed50be9720.tar.gz
crawl-ref-c1ab37674e9eeb63f703e8c8ef44c0ed50be9720.zip
Comment fix.
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/mon-util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 987ebd3712..ae70c01d18 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -5428,8 +5428,8 @@ bool monsters::is_named() const
bool monsters::has_base_name() const
{
- // Any non-ghost, non-Pandemonium demon that has an explicitly set name
- // has a base name.
+ // Any non-ghost, non-Pandemonium demon that has an explicitly set
+ // name has a base name.
return (!mname.empty() && !ghost.get());
}