Add barrier block

This commit is contained in:
An0n3m0us 2019-09-26 07:39:24 +01:00
parent b31795dd04
commit 92ca046870
2 changed files with 12 additions and 0 deletions

View file

@ -2868,6 +2868,18 @@ minetest.register_node("default:cloud", {
groups = {not_in_creative_inventory = 1},
})
minetest.register_node("default:barrier", {
description = S("Barrier"),
tiles = {"default_barrier.png"},
inventory_image = "default_cloud.png",
is_ground_content = false,
sounds = default.node_sound_defaults(),
groups = {not_in_creative_inventory = 1, cracky = 1},
on_blast = function() end,
alpha = 1
})
--
-- register trees for leafdecay
--

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B