summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-30 19:34:53 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-30 19:34:53 +0000
commit440223d779dbdc8e13794e3e80fc1972f2cec400 (patch)
tree84fe2a239ba211c29cddde0c6e546d6c29fe0fa4 /crawl-ref/source/stash.cc
parent54c7a6d407c00c12b2866baf1b9112a8eae34fcf (diff)
downloadcrawl-ref-440223d779dbdc8e13794e3e80fc1972f2cec400.tar.gz
crawl-ref-440223d779dbdc8e13794e3e80fc1972f2cec400.zip
Added two new message channels:
* MSGCH_EXAMINE (examine surroundings in direct.cc), and * MSGCH_EXAMINE_FILTER (as above for "less important" cases) The latter is filtered out of the message history (hence the name) and includes items/features out of sight and "Floor." git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2037 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stash.cc')
-rw-r--r--crawl-ref/source/stash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc
index a6aa55ecb9..4fde168fe2 100644
--- a/crawl-ref/source/stash.cc
+++ b/crawl-ref/source/stash.cc
@@ -109,7 +109,7 @@ void describe_stash(int x, int y)
{
std::string desc = "[Stash: "
+ s->description() + "]";
- mpr(desc.c_str());
+ mpr(desc.c_str(), MSGCH_EXAMINE_FILTER);
}
}
}