| 649 | RESTORE_WARNING_FORMAT_NONLITERAL |
| 650 | |
| 651 | staticfn void |
| 652 | stripspe(struct obj *obj) |
| 653 | { |
| 654 | if (obj->blessed || obj->spe <= 0) { |
| 655 | pline1(nothing_happens); |
| 656 | } else { |
| 657 | /* order matters: message, shop handling, actual transformation */ |
| 658 | pline("%s briefly.", Yobjnam2(obj, "vibrate")); |
| 659 | costly_alteration(obj, COST_UNCHRG); |
| 660 | obj->spe = 0; |
| 661 | if (obj->otyp == OIL_LAMP || obj->otyp == BRASS_LANTERN) |
| 662 | obj->age = 0; |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | staticfn void |
| 667 | p_glow1(struct obj *otmp) |
no test coverage detected