| 2209 | } |
| 2210 | |
| 2211 | void |
| 2212 | bury_you(void) |
| 2213 | { |
| 2214 | debugpline0("bury_you"); |
| 2215 | if (!Levitation && !Flying) { |
| 2216 | if (u.uswallow) |
| 2217 | You_feel("a sensation like falling into a trap!"); |
| 2218 | else |
| 2219 | pline_The("%s opens beneath you and you fall in!", |
| 2220 | surface(u.ux, u.uy)); |
| 2221 | |
| 2222 | u.uburied = TRUE; |
| 2223 | if (!Strangled && !Breathless) |
| 2224 | Strangled = 6; |
| 2225 | under_ground(1); |
| 2226 | } |
| 2227 | } |
| 2228 | |
| 2229 | void |
| 2230 | unearth_you(void) |
nothing calls this directly
no test coverage detected