Massive changes!

This commit is contained in:
IamPyu
2024-10-28 21:16:36 -06:00
parent f881682777
commit 7367a01b4f
27 changed files with 317 additions and 231 deletions

View File

@@ -102,7 +102,8 @@ PyuTest.make_building_blocks = function(name, desc, tex, colortint, cgroups, ext
paramtype2 = "facedir",
node_box = PyuTest.NODE_BOXES.CARPET,
sounds = PyuTest.make_node_sounds(),
buildable_to = true
buildable_to = true,
floodable = true
}, econf))
minetest.register_node(id_slab, PyuTest.util.tableconcat({
@@ -235,6 +236,7 @@ PyuTest.make_liquid = function(name, desc, groups, texture, speed, extra_conf)
local g = groups or {}
g["liquid"] = 1
g["not_in_creative_inventory"] = 1
PyuTest.make_node(name .. "_source", desc .. " Source", PyuTest.util.tableconcat(g, {
liquid_source = 1

View File

@@ -171,6 +171,9 @@ PyuTest.make_node("pyutest_blocks:ladder", "Ladder", {
selection_box = {
type = "wallmounted"
},
collision_box = {
type = "wallmounted"
},
inventory_image = "pyutest-ladder.png"
})