| 1803 | } |
| 1804 | |
| 1805 | boolean |
| 1806 | occupied(coordxy x, coordxy y) |
| 1807 | { |
| 1808 | return (boolean) (t_at(x, y) || IS_FURNITURE(levl[x][y].typ) |
| 1809 | || is_lava(x, y) || is_pool(x, y) |
| 1810 | || invocation_pos(x, y)); |
| 1811 | } |
| 1812 | |
| 1813 | /* generate a corpse and some items on top of a trap */ |
| 1814 | staticfn void |
no test coverage detected