From bf3979cc79d3cb064e975dc22b332e45f512f63d Mon Sep 17 00:00:00 2001 From: Jean-Patrick Guerrero Date: Thu, 31 Dec 2020 05:07:42 +0100 Subject: [PATCH] Small fix --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 7457fa4..1ec8f57 100644 --- a/init.lua +++ b/init.lua @@ -1822,7 +1822,8 @@ trash:set_size("main", 1) core.register_on_player_inventory_action(function(player, action, inv, info) if (info.from_list == "main" and info.to_list == "craft") or - (info.from_list == "craft" and info.to_list == "main") then + (info.from_list == "craft" and info.to_list == "main") or + (info.from_list == "craftresult" and info.to_list == "main") then local name = player:get_player_name() local data = pdata[name] local fs = make_fs(player, data)