More creative fixes

This commit is contained in:
Wuzzy 2017-01-17 01:46:38 +01:00
parent 990ffb139a
commit 5895fcb4b9
2 changed files with 3 additions and 14 deletions

View file

@ -13,11 +13,8 @@ minetest.register_node("default:barrier", {
stack_max = 64,
sunlight_propagates = true,
is_ground_content = false,
groups = { not_in_creative_inventory = 1 },
groups = { not_in_creative_inventory = 1, oddly_breakable_by_hand = 5 },
on_blast = function() end,
on_destruct = function () end,
can_dig = function() return false end,
diggable = false,
})
minetest.register_node("default:stone", {
@ -986,9 +983,6 @@ minetest.register_node("default:bedrock", {
sounds = default.node_sound_stone_defaults(),
is_ground_content = false,
on_blast = function() end,
on_destruct = function () end,
can_dig = function() return false end,
diggable = false,
drop = '',
})