summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index 6118d7c4e3..f221bc9501 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -135,6 +135,8 @@ static bool is_noteworthy( const Note& note )
it's a new maximal skill (depending on options) */
if ( note.type == NOTE_GAIN_SKILL )
{
+ if ( Options.note_all_skill_levels )
+ return true;
if ( is_noteworthy_skill_level(note.second) )
return true;
if ( Options.note_skill_max && is_highest_skill(note.first) )