diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e44493..85dcf9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,6 @@ - Added biome "flat" which is only available in flat worlds - Nodes like torches are now floodable - Windballs now launch you in the direction you're moving at the cost of reduced launch height -- The Wind Warrior now drops less windballs because of the windball buff - Started a wiki for players # [Aug 23rd 2024] Unnamed Minor Update diff --git a/mods/pyutest/pyutest_core/blocks.lua b/mods/pyutest/pyutest_core/blocks.lua index 9a9dc2e..1fe0bf6 100644 --- a/mods/pyutest/pyutest_core/blocks.lua +++ b/mods/pyutest/pyutest_core/blocks.lua @@ -397,7 +397,8 @@ PyuTestCore.make_node("pyutest_core:light", "Light", { walkable = false, paramtype = "light", sunlight_propagates = true, - light_source = minetest.LIGHT_MAX + light_source = minetest.LIGHT_MAX, + floodable = true }) PyuTestCore.make_node("pyutest_core:torch", "Torch", {