to Abyssal ghosts at the moment.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1290 c06c8d41-db1a-0410-9941-cceddc491573
LEY3EZGTCBV6CYX4L727KQ4ZXL2LZLT5WESN3WAF65VRMX4EDP4QC
const m_transit_list *mt = get_transit_list(level_id::current());
if (mt)
{
for (m_transit_list::const_iterator i = mt->begin();
i != mt->end() && n > 0; ++i)
{
if (i->mons.type == MONS_PLAYER_GHOST)
{
const monsters &m = i->mons;
if (m.ghost.get())
{
gs.push_back(*m.ghost);
--n;
}
}
}
}
}