Fix doors unable to push single item into storeboxes

The special case of trying to push a single item into a storebox
is an overlap between the item catapult and the place-node recipe.
Change the priority order so the catapult check is done first.
This is not expected to cause problems in other cases because in
those, the presence of a "backstop" node causes them not to overlap.
This commit is contained in:
Aaron Suen 2021-07-01 19:15:58 -04:00
parent 8c6d7ff0c3
commit 8a11db9825

View File

@ -119,7 +119,7 @@ end
nodecore.register_craft({
action = "press",
label = "eject item",
priority = -1,
priority = 2,
nodes = {
{match = {stacked = true, count = false}}
},