forked from VoxeLibre/VoxeLibre
Increase default track friction, disable right-click to exit minecarts
This commit is contained in:
parent
c198257ae7
commit
5b1ebbff97
|
@ -8,7 +8,7 @@ mcl_minecarts.modpath = minetest.get_modpath(modname)
|
|||
mcl_minecarts.speed_max = 10
|
||||
mcl_minecarts.check_float_time = 15
|
||||
local max_step_distance = 0.5
|
||||
local friction = 0.1
|
||||
local friction = 0.4
|
||||
|
||||
dofile(mcl_minecarts.modpath.."/functions.lua")
|
||||
dofile(mcl_minecarts.modpath.."/rails.lua")
|
||||
|
@ -1021,7 +1021,7 @@ register_minecart({
|
|||
end
|
||||
local player_name = clicker:get_player_name()
|
||||
if self._driver and player_name == self._driver then
|
||||
detach_driver(self)
|
||||
--detach_driver(self)
|
||||
elseif not self._driver then
|
||||
self._driver = player_name
|
||||
self._start_pos = self.object:get_pos()
|
||||
|
|
Loading…
Reference in New Issue