summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-24 01:24:15 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-24 01:24:15 +0000
commit905e3a284a0aa9a06bc540fc557b423f1e850041 (patch)
tree8258f7cd72c1bdf0a0bdfccac6a357845e41ce8d /crawl-ref/source/notes.cc
parentcd0672dfe7259e91c502f61433e0382182de1650 (diff)
downloadcrawl-ref-905e3a284a0aa9a06bc540fc557b423f1e850041.tar.gz
crawl-ref-905e3a284a0aa9a06bc540fc557b423f1e850041.zip
Prevent spurious ID notes when wizard creating items (&%).
Get &Z (cast spell by name) to work with command history (re-do/repeat command). Fix message-type notes doubling the message with a "Found" stuck between the copies. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7930 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index 5a7f6bf743..d4f8c82912 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -368,6 +368,7 @@ std::string Note::describe( bool when, bool where, bool what ) const
break;
case NOTE_MESSAGE:
result << name;
+ break;
case NOTE_SEEN_FEAT:
result << "Found " << name;
break;