| 139 | } |
| 140 | |
| 141 | int Game_Party::GetItemCount(int item_id) const { |
| 142 | auto ip = GetItemIndex(item_id); |
| 143 | return ip.second ? data.item_counts[ip.first] : 0; |
| 144 | } |
| 145 | |
| 146 | int Game_Party::GetEquippedItemCount(int item_id) const { |
| 147 | int number = 0; |
no outgoing calls
no test coverage detected