1
0

Removed stray printf, again.

This commit is contained in:
Samuel Barney 2013-12-02 09:56:42 -07:00
parent 050702eaa1
commit 53d5eb09e0

View File

@ -1158,7 +1158,6 @@ void cProtocol172::HandlePacketBlockPlace(UInt32 a_RemainingBytes)
HANDLE_READ(ReadByte, Byte, CursorX);
HANDLE_READ(ReadByte, Byte, CursorY);
HANDLE_READ(ReadByte, Byte, CursorZ);
printf("Cursor: %i %i %i\n", CursorX, CursorY, CursorZ);
m_Client->HandleRightClick(BlockX, BlockY, BlockZ, Face, CursorX, CursorY, CursorZ, m_Client->GetPlayer()->GetEquippedItem());
}