git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@545 c06c8d41-db1a-0410-9941-cceddc491573
SUQ7J6V6BDWG6G6KBGPQ6HYKBMJDM6VKN7ODHVU6YCPRWNEOZCJQC
if ( note.type == NOTE_DUNGEON_LEVEL_CHANGE &&
!is_noteworthy_dlevel(note.packed_place) )
return false;
if ( note.type == NOTE_DUNGEON_LEVEL_CHANGE )
{
if ( !is_noteworthy_dlevel(note.packed_place) )
return false;
// labyrinths are always interesting
if ( (note.packed_place & 0xFF) == 0xFF &&
(note.packed_place >> 8) == LEVEL_LABYRINTH )
return true;
}