making the functions for special rooms innapropriate for the Lair do nothing. Can't do this via dummy vaults since special rooms are chosen based on absolute depth, not branch depth.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7991 c06c8d41-db1a-0410-9941-cceddc491573
U6RDLNUOB2T2JJ6HRW66MASONHA3GBOOSPUFSCPFTB4ZSCAD3WKAC
-- NOTE: To make beehives occur in the Lair with the same absolute frequency
-- as in 0.4, the special room definitions which don't fit there should
-- just do nothing. Can't use dummy vaults to do this since vault
-- frequency is controlled by absolute depth rather than by branch depth.
function is_in_lair()
local l_name = dgn.level_name(dgn.level_id())
return string.find(dgn.level_name(dgn.level_id()), "Lair")
end