From 15bf9a7026db34bddc5f756361bd06a1e5cb9aff Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 21 Jul 2012 15:32:46 +0300 Subject: [PATCH] Fix typo in scriptapi.cpp in minetest.get_craft_recipe() --- src/scriptapi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scriptapi.cpp b/src/scriptapi.cpp index 39e89ddb5..17483ec16 100644 --- a/src/scriptapi.cpp +++ b/src/scriptapi.cpp @@ -4593,7 +4593,7 @@ static int l_get_craft_recipe(lua_State *L) setintfield(L, -1, "width", input.width); switch (input.method) { case CRAFT_METHOD_NORMAL: - lua_pushstring(L,"noraml"); + lua_pushstring(L,"normal"); break; case CRAFT_METHOD_COOKING: lua_pushstring(L,"cooking");