| 3393 | } |
| 3394 | |
| 3395 | uint32_t GetPlayerFlags(uint32_t index) |
| 3396 | { |
| 3397 | auto& network = GetContext()->GetNetwork(); |
| 3398 | Guard::IndexInRange(index, network.player_list); |
| 3399 | |
| 3400 | return network.player_list[index]->flags; |
| 3401 | } |
| 3402 | |
| 3403 | int32_t GetPlayerPing(uint32_t index) |
| 3404 | { |
no test coverage detected