| 87 | } |
| 88 | |
| 89 | void |
| 90 | onquest(void) |
| 91 | { |
| 92 | if (u.uevent.qcompleted || Not_firsttime) |
| 93 | return; |
| 94 | if (!Is_special(&u.uz)) |
| 95 | return; |
| 96 | |
| 97 | if (Is_qstart(&u.uz)) |
| 98 | on_start(); |
| 99 | else if (Is_qlocate(&u.uz)) |
| 100 | on_locate(); |
| 101 | else if (Is_nemesis(&u.uz)) |
| 102 | on_goal(); |
| 103 | return; |
| 104 | } |
| 105 | |
| 106 | void |
| 107 | nemdead(void) |
no test coverage detected