summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/map_knowledge.cc
diff options
context:
space:
mode:
authorRobert Burnham <burnhamrobertp@gmail.com>2011-03-25 13:37:13 -0500
committerRobert Burnham <burnhamrobertp@gmail.com>2011-03-25 13:37:13 -0500
commitf6a5725258000fd37381ffcd38fb1a2c15cdadde (patch)
treeeb97830765e859cb560713e29a2875fcd185ee49 /crawl-ref/source/map_knowledge.cc
parent1ff96d184c6a5b808b8017e3fba82bc4af0908da (diff)
downloadcrawl-ref-f6a5725258000fd37381ffcd38fb1a2c15cdadde.tar.gz
crawl-ref-f6a5725258000fd37381ffcd38fb1a2c15cdadde.zip
Replace DESC_NOCAP_A and DESC_CAP_A with DESC_A
Diffstat (limited to 'crawl-ref/source/map_knowledge.cc')
-rw-r--r--crawl-ref/source/map_knowledge.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/map_knowledge.cc b/crawl-ref/source/map_knowledge.cc
index ec2fa6e4cd..02f1dddc0f 100644
--- a/crawl-ref/source/map_knowledge.cc
+++ b/crawl-ref/source/map_knowledge.cc
@@ -149,7 +149,7 @@ void set_terrain_seen(int x, int y)
{
coord_def pos(x, y);
std::string desc =
- feature_description(pos, false, DESC_NOCAP_A);
+ feature_description(pos, false, DESC_A);
take_note(Note(NOTE_SEEN_FEAT, 0, 0, desc.c_str()));
}