| 498 | } |
| 499 | |
| 500 | bool Game_Party::IsActorInParty(int actor_id) { |
| 501 | return std::find(data.party.begin(), data.party.end(), actor_id) != data.party.end(); |
| 502 | } |
| 503 | |
| 504 | int Game_Party::GetActorPositionInParty(int actor_id) { |
| 505 | std::vector<short>::iterator it = std::find(data.party.begin(), data.party.end(), actor_id); |
no test coverage detected