From 15fa09f801a894a39a7c0949c5ed4c496b4038e4 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Sun, 5 Apr 2009 18:27:44 +0000 Subject: * Tweak FAQ and change log some more. * Default use_fake_cursor to true since it appears to be a common enough problem that we regularly get bug reports about the cursor disappearing in X mode. * Add altars to the list of features displayed in V. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9585 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/directn.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/directn.cc') diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc index f79df0c226..92a7fc3845 100644 --- a/crawl-ref/source/directn.cc +++ b/crawl-ref/source/directn.cc @@ -462,8 +462,11 @@ void full_describe_view() // Grab all items known (or thought) to be in the stashes in view. for (radius_iterator ri(you.pos(), LOS_RADIUS); ri; ++ri) { - if (grid_stair_direction(grd(*ri)) != CMD_NO_CMD) + if (grid_stair_direction(grd(*ri)) != CMD_NO_CMD + || is_altar(grd(*ri))) + { list_features.push_back(*ri); + } const monsters *mon = monster_at(*ri); const bool unknown_mimic = (mon && mons_is_unknown_mimic(mon)); @@ -668,7 +671,6 @@ void full_describe_view() const coord_def c = list_features[i]; std::string desc = ""; #ifndef USE_TILE -// get_screen_glyph(c) const coord_def e = c - you.pos() + coord_def(9,9); unsigned short col = env.show_col(e);; int object = env.show(e); -- cgit v1.2.3-54-g00ecf