mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
Attachments: Proper data cleanup in callbacks
This commit is contained in:
parent
0a90bd8a0e
commit
be261573ba
3 changed files with 7 additions and 13 deletions
|
@ -53,10 +53,9 @@ function boat.on_rightclick(self, clicker)
|
||||||
end
|
end
|
||||||
local name = clicker:get_player_name()
|
local name = clicker:get_player_name()
|
||||||
if self.driver and name == self.driver then
|
if self.driver and name == self.driver then
|
||||||
self.driver = nil
|
-- Cleanup happens in boat.on_detach_child
|
||||||
self.auto = false
|
|
||||||
clicker:set_detach()
|
clicker:set_detach()
|
||||||
player_api.player_attached[name] = false
|
|
||||||
player_api.set_animation(clicker, "stand" , 30)
|
player_api.set_animation(clicker, "stand" , 30)
|
||||||
local pos = clicker:get_pos()
|
local pos = clicker:get_pos()
|
||||||
pos = {x = pos.x, y = pos.y + 0.2, z = pos.z}
|
pos = {x = pos.x, y = pos.y + 0.2, z = pos.z}
|
||||||
|
@ -64,14 +63,6 @@ function boat.on_rightclick(self, clicker)
|
||||||
clicker:set_pos(pos)
|
clicker:set_pos(pos)
|
||||||
end)
|
end)
|
||||||
elseif not self.driver then
|
elseif not self.driver then
|
||||||
local attach = clicker:get_attach()
|
|
||||||
if attach and attach:get_luaentity() then
|
|
||||||
local luaentity = attach:get_luaentity()
|
|
||||||
if luaentity.driver then
|
|
||||||
luaentity.driver = nil
|
|
||||||
end
|
|
||||||
clicker:set_detach()
|
|
||||||
end
|
|
||||||
self.driver = name
|
self.driver = name
|
||||||
clicker:set_attach(self.object, "",
|
clicker:set_attach(self.object, "",
|
||||||
{x = 0.5, y = 1, z = -3}, {x = 0, y = 0, z = 0})
|
{x = 0.5, y = 1, z = -3}, {x = 0, y = 0, z = 0})
|
||||||
|
@ -86,6 +77,9 @@ end
|
||||||
|
|
||||||
-- If driver leaves server while driving boat
|
-- If driver leaves server while driving boat
|
||||||
function boat.on_detach_child(self, child)
|
function boat.on_detach_child(self, child)
|
||||||
|
if child and child:get_player_name() == self.driver then
|
||||||
|
player_api.player_attached[child:get_player_name()] = false
|
||||||
|
end
|
||||||
self.driver = nil
|
self.driver = nil
|
||||||
self.auto = false
|
self.auto = false
|
||||||
end
|
end
|
||||||
|
|
|
@ -66,9 +66,9 @@ end
|
||||||
-- 0.5.x and later: When the driver leaves
|
-- 0.5.x and later: When the driver leaves
|
||||||
function cart_entity:on_detach_child(child)
|
function cart_entity:on_detach_child(child)
|
||||||
if child and child:get_player_name() == self.driver then
|
if child and child:get_player_name() == self.driver then
|
||||||
self.driver = nil
|
|
||||||
carts:manage_attachment(child, nil)
|
carts:manage_attachment(child, nil)
|
||||||
end
|
end
|
||||||
|
self.driver = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
function cart_entity:on_punch(puncher, time_from_last_punch, tool_capabilities, direction)
|
function cart_entity:on_punch(puncher, time_from_last_punch, tool_capabilities, direction)
|
||||||
|
|
|
@ -12,7 +12,7 @@ function carts:manage_attachment(player, obj)
|
||||||
end
|
end
|
||||||
local status = obj ~= nil
|
local status = obj ~= nil
|
||||||
local player_name = player:get_player_name()
|
local player_name = player:get_player_name()
|
||||||
if player_api.player_attached[player_name] == status then
|
if player:get_attach() == obj then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
player_api.player_attached[player_name] = status
|
player_api.player_attached[player_name] = status
|
||||||
|
|
Loading…
Add table
Reference in a new issue