diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2014-12-29 11:03:11 +0000 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2014-12-29 11:03:11 +0000 |
commit | cae854e5baefd2f73ce1682bd35b77222b701b94 (patch) | |
tree | eef4b37b220e420f2b0e64f2ddbcc8e487d5c871 /extra.lua | |
parent | 4c3e8741cad55be7509c49f908ca796d6bba2705 (diff) |
Updated to work with MT 0.4.11
Diffstat (limited to 'extra.lua')
-rw-r--r-- | extra.lua | 19 |
1 files changed, 2 insertions, 17 deletions
@@ -167,23 +167,8 @@ minetest.register_craft({ } }) --- Obsidian Brick -minetest.register_node("ethereal:obsidian_brick", { - description = "Obsidian Brick", - inventory_image = minetest.inventorycube("obsidian_brick.png"), - tiles = {"obsidian_brick.png"}, - paramtype = "facedir", - groups = {cracky=1,level=3}, - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_craft({ - output = 'ethereal:obsidian_brick 2', - recipe = { - {'default:obsidian', 'default:obsidian'}, - {'default:obsidian', 'default:obsidian'}, - } -}) +-- Obsidian Brick (now in default game so added compatibility for old maps) +minetest.register_alias("ethereal:obsidian_brick", "default:obsidianbrick") -- Quicksand (old style, sinking inside shows black instead of yellow effect, -- works ok with noclip enabled though) |