Increase default track friction, disable right-click to exit minecarts

This commit is contained in:
teknomunk 2024-03-13 12:08:12 +00:00
parent c2be93e0d5
commit d479bfb711

View File

@ -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()