potentially called from goto_level(do.c) as well as savestateinlock() */
| 334 | |
| 335 | /* potentially called from goto_level(do.c) as well as savestateinlock() */ |
| 336 | boolean |
| 337 | tricked_fileremoved(NHFILE *nhfp, char *whynot) |
| 338 | { |
| 339 | if (!nhfp) { |
| 340 | pline1(whynot); |
| 341 | pline("Probably someone removed it."); |
| 342 | Strcpy(svk.killer.name, whynot); |
| 343 | done(TRICKED); |
| 344 | return TRUE; |
| 345 | } |
| 346 | return FALSE; |
| 347 | } |
| 348 | |
| 349 | #ifdef INSURANCE |
| 350 | void |
no test coverage detected