git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2036 c06c8d41-db1a-0410-9941-cceddc491573
HQXDLVLTDTWKB5OY5DKOLMY6PFXL7HHWVRM5FIW4FOX3RBRQP44AC
RGY2525RQH7SSGM6ZVI7CZL4WMNFZK2WRABOSIWRKQYYOU2RWN4QC
BRGAZR5AXWC2IALBVXO5SB354IRQEIRHSK55RZPGFI4AGIOD4LUQC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
// nobody there if (you.x_pos != x && you.y_pos != y && mgrd[x][y] == NON_MONSTER) return; // player or monster on position but hasn't been caught
// nobody there
if (you.x_pos != x && you.y_pos != y && mgrd[x][y] == NON_MONSTER)
return;
// player or monster on position but hasn't been caught
|| mgrd[x][y] == NON_MONSTER || !mons_is_caught(&menv[mgrd[x][y]]))
|| mgrd[x][y] != NON_MONSTER && !mons_is_caught(&menv[mgrd[x][y]]))
// somebody on square who HAS been caught, maybe by this net?