| 1568 | |
| 1569 | |
| 1570 | int cProtocol125::ParseUpdateSign(void) |
| 1571 | { |
| 1572 | HANDLE_PACKET_READ(ReadBEInt, int, BlockX); |
| 1573 | HANDLE_PACKET_READ(ReadBEShort, short, BlockY); |
| 1574 | HANDLE_PACKET_READ(ReadBEInt, int, BlockZ); |
| 1575 | HANDLE_PACKET_READ(ReadBEUTF16String16, AString, Line1); |
| 1576 | HANDLE_PACKET_READ(ReadBEUTF16String16, AString, Line2); |
| 1577 | HANDLE_PACKET_READ(ReadBEUTF16String16, AString, Line3); |
| 1578 | HANDLE_PACKET_READ(ReadBEUTF16String16, AString, Line4); |
| 1579 | m_Client->HandleUpdateSign(BlockX, BlockY, BlockZ, Line1, Line2, Line3, Line4); |
| 1580 | return PARSE_OK; |
| 1581 | } |
| 1582 | |
| 1583 | |
| 1584 |
nothing calls this directly
no test coverage detected