forked from VoxeLibre/VoxeLibre
Fix crash with minecart on activator rail
This commit is contained in:
parent
6cdd72c485
commit
b5892419c5
|
@ -67,6 +67,8 @@ local function detach_driver(self)
|
|||
--print("No player object found for "..driver_name)
|
||||
end
|
||||
end
|
||||
mod.detach_driver = detach_driver
|
||||
|
||||
function mod.kill_cart(staticdata, killer)
|
||||
local pos
|
||||
mcl_log("cart #"..staticdata.uuid.." was killed")
|
||||
|
|
|
@ -7,7 +7,7 @@ local mod = mcl_minecarts
|
|||
local PASSENGER_ATTACH_POSITION = mod.PASSENGER_ATTACH_POSITION
|
||||
|
||||
local function activate_normal_minecart(self)
|
||||
detach_driver(self)
|
||||
mod.detach_driver(self)
|
||||
|
||||
-- Detach passenger
|
||||
if self._passenger then
|
||||
|
|
Loading…
Reference in New Issue