Removed a few debugging messages from the release builds.
( http://forum.mc-server.org/showthread.php?tid=571 ) git-svn-id: http://mc-server.googlecode.com/svn/trunk@936 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
@@ -73,11 +73,11 @@ bool cInventory::AddItem( cItem & a_Item )
|
||||
return false;
|
||||
}
|
||||
|
||||
for(unsigned int i = 0; i < c_NumSlots; i++)
|
||||
for (unsigned int i = 0; i < c_NumSlots; i++)
|
||||
{
|
||||
if( ChangedSlots[i] )
|
||||
if (ChangedSlots[i])
|
||||
{
|
||||
LOG("Item was added to %i ID:%i Count:%i", i, m_Slots[i].m_ItemID, m_Slots[i].m_ItemCount );
|
||||
LOGD("cInventory::AddItem(): Item was added to %i ID:%i Count:%i", i, m_Slots[i].m_ItemID, m_Slots[i].m_ItemCount);
|
||||
SendSlot(i);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user