forked from VoxeLibre/VoxeLibre
Remove some dangerous minetest.after in mcl_boats
This commit is contained in:
parent
f4e59be53f
commit
1a6a9ecf0f
|
@ -67,9 +67,7 @@ function boat.on_rightclick(self, clicker)
|
||||||
mcl_player.player_set_animation(clicker, "stand" , 30)
|
mcl_player.player_set_animation(clicker, "stand" , 30)
|
||||||
local pos = clicker:getpos()
|
local pos = clicker:getpos()
|
||||||
pos = {x = pos.x, y = pos.y + 0.2, z = pos.z}
|
pos = {x = pos.x, y = pos.y + 0.2, z = pos.z}
|
||||||
minetest.after(0.1, function()
|
|
||||||
clicker:setpos(pos)
|
clicker:setpos(pos)
|
||||||
end)
|
|
||||||
elseif not self.driver then
|
elseif not self.driver then
|
||||||
local attach = clicker:get_attach()
|
local attach = clicker:get_attach()
|
||||||
if attach and attach:get_luaentity() then
|
if attach and attach:get_luaentity() then
|
||||||
|
@ -127,10 +125,7 @@ function boat.on_punch(self, puncher)
|
||||||
if not minetest.setting_getbool("creative_mode") then
|
if not minetest.setting_getbool("creative_mode") then
|
||||||
minetest.add_item(self.object:getpos(), leftover)
|
minetest.add_item(self.object:getpos(), leftover)
|
||||||
end
|
end
|
||||||
-- delay remove to ensure player is detached
|
|
||||||
minetest.after(0.1, function()
|
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
end)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue