Handle items with m_count==0 sanely when placing

This commit is contained in:
Perttu Ahola 2011-11-29 21:05:53 +02:00
parent cd030639a4
commit 2a610b011a
1 changed files with 1 additions and 1 deletions

View File

@ -3361,7 +3361,7 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
if(g_settings->getBool("creative_mode") == false && ilist)
{
// Remove from inventory and send inventory
if(mitem->getCount() == 1)
if(mitem->getCount() <= 1)
ilist->deleteItem(item_i);
else
mitem->remove(1);