From a392d59cab2dfef3e6e1f9da3b7c7b771981005d Mon Sep 17 00:00:00 2001 From: kay27 Date: Mon, 14 Mar 2022 04:16:35 +0400 Subject: [PATCH] #249 Make slower bubble column pull above water level --- mods/PLAYER/mcl_playerplus/init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mods/PLAYER/mcl_playerplus/init.lua b/mods/PLAYER/mcl_playerplus/init.lua index 84a78baf8..4b4e8d1a7 100644 --- a/mods/PLAYER/mcl_playerplus/init.lua +++ b/mods/PLAYER/mcl_playerplus/init.lua @@ -478,7 +478,8 @@ minetest.register_globalstep(function(dtime) then break else - head_alt_1 = next_alt + -- show head slightly above water level: + head_alt_1 = head_alt_1 + (next_alt - head_alt_1) * 0.26 break end end