| 630 | } |
| 631 | |
| 632 | void HitStatusClearAllDamage(OsiArgumentDesc const & args) |
| 633 | { |
| 634 | auto status = HitStatusGet(args); |
| 635 | if (status == nullptr) return; |
| 636 | |
| 637 | status->DamageInfo.DamageList.Clear(); |
| 638 | } |
| 639 | |
| 640 | void HitStatusClearDamage(OsiArgumentDesc const & args) |
| 641 | { |
nothing calls this directly
no test coverage detected