diff options
author | gpcf <gabriel@gpcf.eu> | 2017-12-08 17:57:05 +0100 |
---|---|---|
committer | Ellenjott [LNJ] <git@lnj.li> | 2017-12-08 17:57:05 +0100 |
commit | fe409885f0532d10da2c9628873f2d4ce315e51f (patch) | |
tree | b4ccfedb26accd676d794ab3a57d082972bddeab /lua | |
parent | 7d69f7d1a9e81fa76fae93172177e47bc8ac2637 (diff) |
Fix duplicate items bug when inserting items from pipes (#13)
Diffstat (limited to 'lua')
-rwxr-xr-x | lua/api.lua | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lua/api.lua b/lua/api.lua index 2bca40c..740e33e 100755 --- a/lua/api.lua +++ b/lua/api.lua @@ -189,11 +189,13 @@ function drawers.drawer_can_insert_object(pos, node, stack, direction) local drawer_visuals = drawers.drawer_visuals[core.serialize(pos)] if not drawer_visuals then return false end - local leftover = stack + for _, visual in pairs(drawer_visuals) do - leftover = visual:try_insert_stack(leftover, true) + if visual.itemName == "" or (visual.itemName == stack:get_name() and visual.count ~= visual.maxCount) then + return true + end end - return not (leftover == stack) + return false end function drawers.register_drawer(name, def) |