2021-04-29 21:39:21 -04:00

13 lines
421 B
Lua

minetest.register_node("fl_stone:bedrock", {
description = "bedrock",
tiles = {"farlands_bedrock.png"},
is_ground_content = false,
on_blast = function() end,
on_destruct = function () end,
can_dig = function() return false end,
diggable = false,
drop = "",
groups = {unbreakable = 1, not_in_creative_inventory = 1},
})
minetest.register_alias("fl_terrain:bedrock", "fl_stone:bedrock")