prevent an egg from ever hatching */
| 1006 | |
| 1007 | /* prevent an egg from ever hatching */ |
| 1008 | void |
| 1009 | kill_egg(struct obj *egg) |
| 1010 | { |
| 1011 | /* stop previous timer, if any */ |
| 1012 | (void) stop_timer(HATCH_EGG, obj_to_any(egg)); |
| 1013 | } |
| 1014 | |
| 1015 | /* timer callback routine: hatch the given egg */ |
| 1016 | void |
no test coverage detected