mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-12 16:15:20 +02:00
Fix wrong number of items in allow_metadata_inventory_put/take callbacks (#10990)
This commit is contained in:
@@ -340,7 +340,7 @@ void IMoveAction::apply(InventoryManager *mgr, ServerActiveObject *player, IGame
|
||||
*/
|
||||
|
||||
ItemStack src_item = list_from->getItem(from_i);
|
||||
if (count > 0)
|
||||
if (count > 0 && count < src_item.count)
|
||||
src_item.count = count;
|
||||
if (src_item.empty())
|
||||
return;
|
||||
|
Reference in New Issue
Block a user