Fixed variable definitions ("undeclared global")

This commit is contained in:
the-real-herowl 2023-10-28 03:22:28 +02:00
parent 6d927ab1a1
commit a8fcae0f51
1 changed files with 3 additions and 3 deletions

View File

@ -490,7 +490,7 @@ function mcl_potions._clear_cached_player_data(player)
effect[player] = nil
end
meta = player:get_meta()
local meta = player:get_meta()
meta:set_int("night_vision", 0)
end
@ -514,7 +514,7 @@ function mcl_potions._save_player_effects(player)
if not player:is_player() then
return
end
meta = player:get_meta()
local meta = player:get_meta()
for name, effect in pairs(registered_effects) do
meta:set_string("mcl_potions:_EF_"..name, minetest.serialize(EF[name][player]))
@ -525,7 +525,7 @@ function mcl_potions._load_player_effects(player)
if not player:is_player() then
return
end
meta = player:get_meta()
local meta = player:get_meta()
-- handle legacy meta strings
local legacy_invisible = minetest.deserialize(meta:get_string("_is_invisible"))