| 1623 | |
| 1624 | |
| 1625 | void cProtocol172::HandlePacketBlockDig(cByteBuffer & a_ByteBuffer) |
| 1626 | { |
| 1627 | HANDLE_READ(a_ByteBuffer, ReadByte, Byte, Status); |
| 1628 | HANDLE_READ(a_ByteBuffer, ReadBEInt, int, BlockX); |
| 1629 | HANDLE_READ(a_ByteBuffer, ReadByte, Byte, BlockY); |
| 1630 | HANDLE_READ(a_ByteBuffer, ReadBEInt, int, BlockZ); |
| 1631 | HANDLE_READ(a_ByteBuffer, ReadChar, char, Face); |
| 1632 | m_Client->HandleLeftClick(BlockX, BlockY, BlockZ, static_cast<eBlockFace>(Face), Status); |
| 1633 | } |
| 1634 | |
| 1635 | |
| 1636 |
nothing calls this directly
no test coverage detected