Fix undeclared global variable in mcl_playerplus

This commit is contained in:
Johannes Fritz 2022-11-14 12:40:45 -06:00
parent b7f766e7cc
commit 3d6ff573e7
1 changed files with 1 additions and 1 deletions

View File

@ -549,7 +549,7 @@ minetest.register_globalstep(function(dtime)
--[[ Swimming: Cause exhaustion.
NOTE: As of 0.4.15, it only counts as swimming when you are with the feet inside the liquid!
Head alone does not count. We respect that for now. ]]
if not parent and (get_item_group(node_feet, "liquid") ~= 0 or
if not player:get_attach() and (get_item_group(node_feet, "liquid") ~= 0 or
get_item_group(node_stand, "liquid") ~= 0) then
local lastPos = mcl_playerplus_internal[name].lastPos
if lastPos then