summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/showsymb.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-07-16 17:26:51 +0100
committerChris Campbell <chriscampbell89@gmail.com>2013-07-16 17:31:10 +0100
commita0ae0798b3ff79286ab4b7f6d0629adea15b2396 (patch)
tree2e20930658bfc4374be075562ba5b4bebe1b1fde /crawl-ref/source/showsymb.cc
parente8bf1fdf90ec7aac1c221180e4977c84723445f1 (diff)
downloadcrawl-ref-a0ae0798b3ff79286ab4b7f6d0629adea15b2396.tar.gz
crawl-ref-a0ae0798b3ff79286ab4b7f6d0629adea15b2396.zip
Remove gloom
Functionally it wasn't very different from regular fog, except that it had an annoying interface (no glyph, recolouring things that were standing in it).
Diffstat (limited to 'crawl-ref/source/showsymb.cc')
-rw-r--r--crawl-ref/source/showsymb.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/crawl-ref/source/showsymb.cc b/crawl-ref/source/showsymb.cc
index a1a2d3475a..e5bd0026b7 100644
--- a/crawl-ref/source/showsymb.cc
+++ b/crawl-ref/source/showsymb.cc
@@ -294,7 +294,7 @@ show_class get_cell_show_class(const map_cell& cell,
return SH_MONSTER;
}
- if (cell.cloud() != CLOUD_NONE && cell.cloud() != CLOUD_GLOOM)
+ if (cell.cloud() != CLOUD_NONE)
return SH_CLOUD;
if (feat_is_trap(cell.feat())
@@ -453,14 +453,6 @@ static cglyph_t _get_cell_glyph_with_class(const map_cell& cell,
g.ch = cell.seen() ? fdef.symbol : fdef.magic_symbol;
}
- if (cell_cloud == CLOUD_GLOOM)
- {
- if (coloured)
- g.col = cell.cloud_colour();
- else
- g.col = DARKGREY;
- }
-
if (g.col)
g.col = real_colour(g.col, loc);