From 8cbf0de2ec9063cce96959eee0d7284e3d2b4aed Mon Sep 17 00:00:00 2001 From: tai Date: Sat, 12 Nov 2016 21:11:04 +0000 Subject: [PATCH 1/3] do not affect protected areas --- nuovo_api.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nuovo_api.lua b/nuovo_api.lua index 101ffbc..db67fdc 100644 --- a/nuovo_api.lua +++ b/nuovo_api.lua @@ -2557,6 +2557,7 @@ function mobs:register_arrow(name, def) if self.hit_node then local node = node_ok(pos).name + if minetest.is_protected(pos,"") then return end --if minetest.registered_nodes[node].walkable then if node ~= "air" then From 1180c6a94a27b0101e1e693535daedb86913333a Mon Sep 17 00:00:00 2001 From: tai Date: Wed, 14 Dec 2016 22:54:00 +0000 Subject: [PATCH 2/3] fixed armor recipes --- nssm_armor.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nssm_armor.lua b/nssm_armor.lua index 9c09a91..bc7041a 100644 --- a/nssm_armor.lua +++ b/nssm_armor.lua @@ -32,7 +32,7 @@ if minetest.get_modpath("3d_armor") then duck="nssm:duck_feather", black_duck="nssm:black_duck_feather", mor= "nssm:lustful_moranga", - sandbloco= "nssm:sandbloco_skin", + sandbloco= "nssm:sand_bloco_skin", sandworm="nssm:sandworm_skin", sky="nssm:sky_iron", web="nssm:web_string", @@ -168,9 +168,9 @@ local stats = { minetest.register_craft({ output = "nssm:chestplate_snake", recipe = { - {"default:iron_ingot", "", "default:iron_ingot"}, - {"default:iron_ingot", "nssm:snake_scute", "default:iron_ingot"}, - {"default:iron_ingot", "default:iron_ingot", "default:iron_ingot"}, + {"default:steel_ingot", "", "default:steel_ingot"}, + {"default:steel_ingot", "nssm:snake_scute", "default:steel_ingot"}, + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, }, }) minetest.register_craft({ From b9791d466d49bad07cc7625d7cdc94dd2cd7d1d4 Mon Sep 17 00:00:00 2001 From: tai Date: Wed, 14 Dec 2016 22:54:51 +0000 Subject: [PATCH 3/3] recipe correction --- nssm_weapons.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssm_weapons.lua b/nssm_weapons.lua index d351774..31f988d 100644 --- a/nssm_weapons.lua +++ b/nssm_weapons.lua @@ -1234,7 +1234,7 @@ nssm_register_throwegg(evomob, evodescr.." Bomb", { minetest.register_craft({ output = 'nssm:'..evomob.."_bomb", type = "shapeless", - recipe = {'nssm:empty_evocation_bomb', 'nssm:'..evomob.."_egg"}, + recipe = {'nssm:empty_evocation_bomb', 'nssm:'..evomob}, })