summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-04-23 14:35:20 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-04-23 14:35:20 -0400
commit70ad64b82ac30a65a044589f0f07ed8555d033c1 (patch)
tree96a0663693a0ce1a801be2bfea6e969929e8cf13 /crawl-ref/source/notes.cc
parent8a335da7465a1ef0f543c0eaa4ae6b794922d51d (diff)
downloadcrawl-ref-70ad64b82ac30a65a044589f0f07ed8555d033c1.tar.gz
crawl-ref-70ad64b82ac30a65a044589f0f07ed8555d033c1.zip
Tell the player in the notes which wizlab they entered.
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index 32499caf30..8acedf7dac 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -80,6 +80,10 @@ static bool _is_noteworthy_dlevel(unsigned short place)
if (branch == BRANCH_ABYSS)
return lev == _dungeon_branch_depth(branch);
+ // These get their note in the .des files.
+ if (branch == BRANCH_WIZLAB)
+ return false;
+
// Other portal levels are always interesting.
if (!is_connected_branch(static_cast<branch_type>(branch)))
return true;