summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-04-10 12:29:55 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-04-17 13:29:49 -0400
commit4e7d99abef2cb048052ff3dfafa338b19a7cb133 (patch)
tree05394b2181b9dd4e1e8a8053cee108861460cc1c /crawl-ref/source/show.cc
parent0f93c8869aae954d4877d32ec8d97c7972f35504 (diff)
downloadcrawl-ref-4e7d99abef2cb048052ff3dfafa338b19a7cb133.tar.gz
crawl-ref-4e7d99abef2cb048052ff3dfafa338b19a7cb133.zip
Remove the clean_map option.
It didn't have a very clear use case and if you really want to reproduce it, you can press ^C every so often. Also clean up the options documentation a bit.
Diffstat (limited to 'crawl-ref/source/show.cc')
-rw-r--r--crawl-ref/source/show.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/show.cc b/crawl-ref/source/show.cc
index df57ef2e67..2a5cf921b4 100644
--- a/crawl-ref/source/show.cc
+++ b/crawl-ref/source/show.cc
@@ -103,10 +103,9 @@ bool show_type::operator < (const show_type &other) const
}
}
-// Returns true if this is a monster that can be hidden for clean_map
-// purposes. All non-immobile monsters are hidden when out of LOS with
-// Options.clean_map, or removed from the map when the clear-map
-// command (^C) is used.
+// Returns true if this is a monster that can be hidden for ^C
+// purposes. All non-immobile monsters are removed from the map
+// when the clear-map command (^C) is used.
bool show_type::is_cleanable_monster() const
{
return cls == SH_MONSTER && !mons_class_is_stationary(mons);