| 508 | |
| 509 | |
| 510 | int cProtocol132::ParseClientStatuses(void) |
| 511 | { |
| 512 | HANDLE_PACKET_READ(ReadByte, Byte, Status); |
| 513 | if ((Status & 1) == 0) |
| 514 | { |
| 515 | m_Client->HandleLogin(39, m_Username); |
| 516 | } |
| 517 | else |
| 518 | { |
| 519 | m_Client->HandleRespawn(); |
| 520 | } |
| 521 | return PARSE_OK; |
| 522 | } |
| 523 | |
| 524 | |
| 525 |
nothing calls this directly
no test coverage detected