| 3401 | } |
| 3402 | |
| 3403 | int32_t GetPlayerPing(uint32_t index) |
| 3404 | { |
| 3405 | auto& network = GetContext()->GetNetwork(); |
| 3406 | Guard::IndexInRange(index, network.player_list); |
| 3407 | |
| 3408 | return network.player_list[index]->ping; |
| 3409 | } |
| 3410 | |
| 3411 | int32_t GetPlayerID(uint32_t index) |
| 3412 | { |
no test coverage detected