1
0
mirror of https://codeberg.org/tenplus1/bakedclay.git synced 2025-07-07 02:30:32 +02:00

Merge remote-tracking branch 'upstream/master'

This commit is contained in:
2024-09-15 08:33:45 +02:00
3 changed files with 65 additions and 55 deletions

View File

@ -32,7 +32,6 @@ local stairsplus_mod = minetest.get_modpath("moreblocks")
and minetest.global_exists("stairsplus")
local stairsplus_compat = minetest.settings:get_bool("stairsplus_clay_compatibility") ~= false
-- scroll through colours
for _, clay in pairs(clay) do
@ -43,7 +42,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 +141,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
})