From 246d525c20c44642077fdeb1ea294eeb99de018a Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 8 Jun 2020 21:40:10 +0200 Subject: [PATCH] Fix `maptools:drowning` using an invalid value and being walkable This prevented Minetest from starting (tested on Minetest 5.3.0-dev-cb9a44ef8). Being walkable also made it impossible to actually drown in, except when using noclip mode. --- nodes.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nodes.lua b/nodes.lua index c369aa7..039f10e 100644 --- a/nodes.lua +++ b/nodes.lua @@ -476,7 +476,8 @@ minetest.register_node("maptools:drowning", { drawtype = "airlike", paramtype = "light", pointable = false, - drowning = true, + walkable = false, + drowning = 1, sunlight_propagates = true, drop = "", groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},