| 2190 | |
| 2191 | #if 0 |
| 2192 | void |
| 2193 | bury_monst(struct monst *mtmp) |
| 2194 | { |
| 2195 | debugpline1("bury_monst: %s", mon_nam(mtmp)); |
| 2196 | if (canseemon(mtmp)) { |
| 2197 | if (is_flyer(mtmp->data) || is_floater(mtmp->data)) { |
| 2198 | pline_The("%s opens up, but %s is not swallowed!", |
| 2199 | surface(mtmp->mx, mtmp->my), mon_nam(mtmp)); |
| 2200 | return; |
| 2201 | } else |
| 2202 | pline_The("%s opens up and swallows %s!", |
| 2203 | surface(mtmp->mx, mtmp->my), mon_nam(mtmp)); |
| 2204 | } |
| 2205 | |
| 2206 | mtmp->mburied = TRUE; |
| 2207 | wakeup(mtmp, FALSE); /* at least give it a chance :-) */ |
| 2208 | newsym(mtmp->mx, mtmp->my); |
| 2209 | } |
| 2210 | |
| 2211 | void |
| 2212 | bury_you(void) |