can monster mtmp break boulders? */
| 130 | |
| 131 | /* can monster mtmp break boulders? */ |
| 132 | boolean |
| 133 | m_can_break_boulder(struct monst *mtmp) |
| 134 | { |
| 135 | return (is_rider(mtmp->data) |
| 136 | || (!mtmp->mspec_used |
| 137 | && (mtmp->isshk || mtmp->ispriest |
| 138 | || (mtmp->data->msound == MS_LEADER)))); |
| 139 | } |
| 140 | |
| 141 | /* monster mtmp breaks boulder at x,y */ |
| 142 | void |
no outgoing calls
no test coverage detected