mirror of
https://codeberg.org/tenplus1/bakedclay.git
synced 2024-11-07 00:40:22 +01:00
add is_ground_content
This commit is contained in:
parent
349e691afb
commit
edc74e1583
4
init.lua
4
init.lua
|
@ -43,7 +43,8 @@ for _, clay in pairs(clay) do
|
|||
description = clay[2] .. " " .. S("Baked Clay"),
|
||||
tiles = {"baked_clay_" .. clay[1] ..".png"},
|
||||
groups = {cracky = 3, bakedclay = 1},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
is_ground_content = false
|
||||
})
|
||||
|
||||
-- register craft recipe
|
||||
|
@ -141,6 +142,7 @@ for _, clay in pairs(clay) do
|
|||
paramtype2 = "facedir",
|
||||
groups = {cracky = 3, terracotta = 1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
is_ground_content = false,
|
||||
on_place = minetest.rotate_node
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user