diff options
Diffstat (limited to '')
-rw-r--r-- | source/cInventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cInventory.cpp b/source/cInventory.cpp index 788d38eaa..68b8b431e 100644 --- a/source/cInventory.cpp +++ b/source/cInventory.cpp @@ -320,7 +320,7 @@ void cInventory::SendSlot( int a_SlotNum ) {
cPacket_InventorySlot InventorySlot;
InventorySlot.m_ItemCount = Item->m_ItemCount;
- InventorySlot.m_ItemID = (short)Item->m_ItemID;
+ InventorySlot.m_ItemID = Item->m_ItemID;
InventorySlot.m_ItemUses = (char)Item->m_ItemHealth;
InventorySlot.m_SlotNum = (short)a_SlotNum;
InventorySlot.m_WindowID = 0; // Inventory window ID
|