Various different changes

This commit is contained in:
IamPyu
2024-10-27 16:57:04 -06:00
parent ecafa581bb
commit f881682777
8 changed files with 66 additions and 23 deletions

View File

@@ -196,6 +196,14 @@ PyuTest.make_node("pyutest_blocks:bedrock", "Bedrock", {
is_ground_content = false
})
PyuTest.make_node("pyutest_blocks:weak_ice", "Weak Ice", {
cracky = PyuTest.BLOCK_FAST
}, {"pyutest-ice.png"}, {
on_walk_over = function(pos)
minetest.set_node(pos, {name = "pyutest_blocks:water_source"})
end
})
minetest.register_abm({
label = "Sponge Loop",
nodenames = { "pyutest_blocks:sponge" },