From a58edd739d821a49463c867b2702124a75b9d265 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Sat, 9 Apr 2022 11:38:33 +0100 Subject: [PATCH] fix walkable waterlily in 5.5 --- schematics/waterlily.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/schematics/waterlily.lua b/schematics/waterlily.lua index 0373a88..31e4875 100644 --- a/schematics/waterlily.lua +++ b/schematics/waterlily.lua @@ -15,6 +15,13 @@ ethereal.waterlily = { if ethereal.lilywalk == true then minetest.override_item("flowers:waterlily", { - walkable = true, + walkable = true }) + + if minetest.registered_nodes["flowers:waterlily_waving"] then + + minetest.override_item("flowers:waterlily_waving", { + walkable = true + }) + end end