| 1741 | } |
| 1742 | |
| 1743 | int16_t ClampToHit(const Item &item, int16_t toHit) |
| 1744 | { |
| 1745 | if (toHit < item._iPLToHit || toHit > 51) |
| 1746 | return item._iPLToHit; |
| 1747 | |
| 1748 | return toHit; |
| 1749 | } |
| 1750 | |
| 1751 | uint8_t ClampMaxDam(const Item &item, uint8_t maxDam) |
| 1752 | { |
no outgoing calls
no test coverage detected