From 622e2235ee700cf92843d2e99a47e36fd4508cf0 Mon Sep 17 00:00:00 2001 From: Paramat Date: Wed, 24 Oct 2018 15:03:21 +0100 Subject: clear_craft: Return false if recipe not found, don't throw error (#7804) --- src/script/lua_api/l_craft.cpp | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) (limited to 'src/script/lua_api/l_craft.cpp') diff --git a/src/script/lua_api/l_craft.cpp b/src/script/lua_api/l_craft.cpp index 64177109e..0899b945e 100644 --- a/src/script/lua_api/l_craft.cpp +++ b/src/script/lua_api/l_craft.cpp @@ -294,11 +294,14 @@ int ModApiCraft::l_clear_craft(lua_State *L) std::string type = getstringfield_default(L, table, "type", "shaped"); CraftOutput c_output(output, 0); if (!output.empty()) { - if (craftdef->clearCraftRecipesByOutput(c_output, getServer(L))) - return 0; + if (craftdef->clearCraftRecipesByOutput(c_output, getServer(L))) { + lua_pushboolean(L, true); + return 1; + } - throw LuaError("No craft recipe known for output" - " (output=\"" + output + "\")"); + warningstream << "No craft recipe known for output" << std::endl; + lua_pushboolean(L, false); + return 1; } std::vector recipe; int width = 0; @@ -347,10 +350,15 @@ int ModApiCraft::l_clear_craft(lua_State *L) } else { throw LuaError("Unknown crafting definition type: \"" + type + "\""); } - if (!craftdef->clearCraftRecipesByInput(method, width, recipe, getServer(L))) - throw LuaError("No crafting specified for input"); - lua_pop(L, 1); - return 0; + + if (!craftdef->clearCraftRecipesByInput(method, width, recipe, getServer(L))) { + warningstream << "No craft recipe matches input" << std::endl; + lua_pushboolean(L, false); + return 1; + } + + lua_pushboolean(L, true); + return 1; } // get_craft_result(input) -- cgit v1.2.3