diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-01 09:41:23 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-01 09:41:23 +0000 |
commit | 8309e6a777b15a5f9b324c93ff9d89045ebc0eb5 (patch) | |
tree | 97b84df63337c7e224ac351f5a097a4b616dc84e /extra.lua | |
parent | 06495be4a079c780f2be6f5099475852913fb0ef (diff) |
code tweaks and additions (thanks RQWorldblender)
Diffstat (limited to 'extra.lua')
-rw-r--r-- | extra.lua | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -163,9 +163,9 @@ minetest.register_node("ethereal:stone_ladder", { minetest.register_craft({ output = "ethereal:stone_ladder 4", recipe = { - {"default:cobble", "", "default:cobble"}, - {"default:cobble", "default:cobble", "default:cobble"}, - {"default:cobble", "", "default:cobble"}, + {"group:stone", "", "group:stone"}, + {"group:stone", "group:stone", "group:stone"}, + {"group:stone", "", "group:stone"}, } }) @@ -262,6 +262,7 @@ minetest.register_tool("ethereal:light_staff", { description = S("Staff of Light"), inventory_image = "light_staff.png", wield_image = "light_staff.png", + sound = {breaks = "default_tool_breaks"}, stack_max = 1, on_use = function(itemstack, user, pointed_thing) |