13 lines
434 B
Lua
Raw Normal View History

2021-04-29 21:39:21 -04:00
minetest.register_node("fl_stone:bedrock", {
2021-03-22 11:29:28 -04:00
description = "bedrock",
tiles = {"farlands_bedrock.png"},
is_ground_content = false,
2021-06-03 21:01:09 -04:00
drop = "",
on_blast = function(pos, intensity) end,
on_destruct = function() end,
2021-03-22 11:29:28 -04:00
can_dig = function() return false end,
diggable = false,
groups = {unbreakable = 1, not_in_creative_inventory = 1},
2021-04-29 21:39:21 -04:00
})
minetest.register_alias("fl_terrain:bedrock", "fl_stone:bedrock")