git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2620 c06c8d41-db1a-0410-9941-cceddc491573
73NSMIRFFRXAEBDKSENC3DDOKAGSVNVE3MYTFT5AJQUIJKBOTR6QC
const int speedup_turn = 3000;
// Monster generation in the Vestibule starts ratcheting up quickly
// after speedup_turn turns spent in the Vestibule.
int genodds = (you.char_direction == GDT_DESCENDING) ? 240 : 8;
if (env.turns_on_level > speedup_turn)
// Monster generation in the Vestibule drops off quickly.
const int taper_off_turn = 500;
int genodds = 240;
if (env.turns_on_level > taper_off_turn)