Merge remote-tracking branch 'upstream/master'

This commit is contained in:
bri cassa 2021-08-04 21:37:41 +02:00
commit 3e0ef20bd8
4 changed files with 13 additions and 2 deletions

View File

@ -8,7 +8,7 @@ https://forum.minetest.net/viewtopic.php?id=8890
Changelog:
- 1.0 - Re-Added glazed terracotta blocks when you cook baked clay in furnace (thanks Amara2_MK)
- 1.0 - Re-Added glazed terracotta blocks when you cook baked clay in furnace (thanks Amara2_MK), added support for sofar's flowerpot mod
- 0.9 - Baked clay now works in the technic cnc machine
- 0.8 - Cooking clay block in furnace gives natural baked clay which you can dye
- 0.7 - Added support for stairsplus so that stairs are registered properly

View File

@ -3,3 +3,4 @@ stairs
moreblocks?
lucky_block?
technic_cnc?
flowerpot?

View File

@ -375,4 +375,14 @@ end
end
-- flowerpot mod
if minetest.get_modpath("flowerpot") then
flowerpot.register_node("bakedclay:delphinium")
flowerpot.register_node("bakedclay:thistle")
flowerpot.register_node("bakedclay:lazarus")
flowerpot.register_node("bakedclay:mannagrass")
end
minetest.log("action", "[MOD] Baked Clay loaded.")

View File

@ -1,4 +1,4 @@
name = bakedclay
depends = default
optional_depends = stairs, moreblocks, lucky_block, technic_cnc
optional_depends = stairs, moreblocks, lucky_block, technic_cnc, flowerpot
description = Adds the ability to bake clay into blocks and colour them with dye.