1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-01-08 23:50:19 +01:00

clean comment and minetest -> core

This commit is contained in:
Luke aka SwissalpS 2024-12-19 14:35:25 +01:00
parent 93541608e7
commit cc9c7d49fe

View File

@ -225,11 +225,12 @@ function lrfurn.on_seat_movenode(from_pos, to_pos)
local hashed_from_pos = core.hash_node_position(from_pos)
local hashed_to_pos = core.hash_node_position(to_pos)
for name, seatpos in pairs(seated_cache) do
local player = minetest.get_player_by_name(name)
if seatpos == hashed_from_pos then
local player = core.get_player_by_name(name)
if player then
local attached_to = player:get_attach()
if attached_to then --check, a stupid clearobjects might have been called, etc
-- Check, clearobjects might have been called, etc
if attached_to then
attached_to:set_pos(to_pos)
seated_cache[name] = hashed_to_pos
end