| 2185 | } |
| 2186 | |
| 2187 | boolean |
| 2188 | accessible(coordxy x, coordxy y) |
| 2189 | { |
| 2190 | /* use underlying terrain in front of closed drawbridge */ |
| 2191 | int levtyp = SURFACE_AT(x, y); |
| 2192 | |
| 2193 | return (boolean) (ACCESSIBLE(levtyp) && !closed_door(x, y)); |
| 2194 | } |
| 2195 | |
| 2196 | /* decide where the monster thinks you are standing */ |
| 2197 | void |
no test coverage detected