attempting to manipulate a Rider's corpse triggers its revival */
| 300 | |
| 301 | /* attempting to manipulate a Rider's corpse triggers its revival */ |
| 302 | boolean |
| 303 | rider_corpse_revival(struct obj *obj, boolean remotely) |
| 304 | { |
| 305 | if (!obj || obj->otyp != CORPSE || !is_rider(&mons[obj->corpsenm])) |
| 306 | return FALSE; |
| 307 | |
| 308 | pline("At your %s, the corpse suddenly moves...", |
| 309 | remotely ? "attempted acquisition" : "touch"); |
| 310 | (void) revive_corpse(obj); |
| 311 | exercise(A_WIS, FALSE); |
| 312 | return TRUE; |
| 313 | } |
| 314 | |
| 315 | /* wand of probing zapped down; perhaps hero is levitating while blind */ |
| 316 | void |
no test coverage detected