mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-01-10 00:59:35 +01:00
Fix crash with minecart on activator rail
This commit is contained in:
parent
cc74a5e75e
commit
fd559ec40d
2 changed files with 3 additions and 1 deletions
|
@ -67,6 +67,8 @@ local function detach_driver(self)
|
||||||
--print("No player object found for "..driver_name)
|
--print("No player object found for "..driver_name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
mod.detach_driver = detach_driver
|
||||||
|
|
||||||
function mod.kill_cart(staticdata, killer)
|
function mod.kill_cart(staticdata, killer)
|
||||||
local pos
|
local pos
|
||||||
mcl_log("cart #"..staticdata.uuid.." was killed")
|
mcl_log("cart #"..staticdata.uuid.." was killed")
|
||||||
|
|
|
@ -7,7 +7,7 @@ local mod = mcl_minecarts
|
||||||
local PASSENGER_ATTACH_POSITION = mod.PASSENGER_ATTACH_POSITION
|
local PASSENGER_ATTACH_POSITION = mod.PASSENGER_ATTACH_POSITION
|
||||||
|
|
||||||
local function activate_normal_minecart(self)
|
local function activate_normal_minecart(self)
|
||||||
detach_driver(self)
|
mod.detach_driver(self)
|
||||||
|
|
||||||
-- Detach passenger
|
-- Detach passenger
|
||||||
if self._passenger then
|
if self._passenger then
|
||||||
|
|
Loading…
Reference in a new issue