| 725 | |
| 726 | |
| 727 | void cProtocol172::SendPlayerListItem(const cPlayer & a_Player, bool a_IsOnline) |
| 728 | { |
| 729 | cPacketizer Pkt(*this, 0x38); // Playerlist Item packet |
| 730 | Pkt.WriteString(a_Player.GetName()); |
| 731 | Pkt.WriteBool(a_IsOnline); |
| 732 | Pkt.WriteShort(a_IsOnline ? a_Player.GetClientHandle()->GetPing() : 0); |
| 733 | } |
| 734 | |
| 735 | |
| 736 |
nothing calls this directly
no test coverage detected