| 2524 | } |
| 2525 | |
| 2526 | void OperateShrineReligious(Player &player) |
| 2527 | { |
| 2528 | if (&player != MyPlayer) |
| 2529 | return; |
| 2530 | |
| 2531 | for (Item &item : PlayerItemsRange { player }) { |
| 2532 | item._iDurability = item._iMaxDur; |
| 2533 | } |
| 2534 | |
| 2535 | InitDiabloMsg(EMSG_SHRINE_RELIGIOUS); |
| 2536 | } |
| 2537 | |
| 2538 | void OperateShrineEnchanted(Player &player) |
| 2539 | { |
no test coverage detected