summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol16x.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-04-04 11:47:46 +0200
committermadmaxoft <github@xoft.cz>2014-04-04 11:47:46 +0200
commit4be894f0601fcfa182fda045b07b196e5dcd9343 (patch)
treec3864d80195075b0c994f8b1b3e91f06f66bf93f /src/Protocol/Protocol16x.cpp
parentFixed CreateHexDump's format string. (diff)
downloadcuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.gz
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.bz2
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.lz
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.xz
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.zst
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.zip
Diffstat (limited to 'src/Protocol/Protocol16x.cpp')
-rw-r--r--src/Protocol/Protocol16x.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Protocol/Protocol16x.cpp b/src/Protocol/Protocol16x.cpp
index ecb24254f..bf7d9a0b1 100644
--- a/src/Protocol/Protocol16x.cpp
+++ b/src/Protocol/Protocol16x.cpp
@@ -119,7 +119,7 @@ void cProtocol161::SendHealth(void)
cCSLock Lock(m_CSPacket);
WriteByte (PACKET_UPDATE_HEALTH);
WriteFloat((float)m_Client->GetPlayer()->GetHealth());
- WriteShort(m_Client->GetPlayer()->GetFoodLevel());
+ WriteShort((short)m_Client->GetPlayer()->GetFoodLevel());
WriteFloat((float)m_Client->GetPlayer()->GetFoodSaturationLevel());
Flush();
}
@@ -163,10 +163,10 @@ void cProtocol161::SendWindowOpen(const cWindow & a_Window)
}
cCSLock Lock(m_CSPacket);
WriteByte (PACKET_WINDOW_OPEN);
- WriteByte (a_Window.GetWindowID());
- WriteByte (a_Window.GetWindowType());
+ WriteChar (a_Window.GetWindowID());
+ WriteByte ((Byte)a_Window.GetWindowType());
WriteString(a_Window.GetWindowTitle());
- WriteByte (a_Window.GetNumNonInventorySlots());
+ WriteByte ((Byte)a_Window.GetNumNonInventorySlots());
WriteByte (1); // Use title
if (a_Window.GetWindowType() == cWindow::wtAnimalChest)
{