forked from mtcontrib/boost_cart
cf9b82de37
Add sounds Change Y acceleration to -2.5 Add partwise compatibility for MTG-registered rails
36 lines
1.0 KiB
Lua
36 lines
1.0 KiB
Lua
|
|
boost_cart = {}
|
|
boost_cart.modpath = minetest.get_modpath("boost_cart")
|
|
|
|
-- Maximal speed of the cart in m/s
|
|
boost_cart.speed_max = 10
|
|
-- Set to -1 to disable punching the cart from inside
|
|
boost_cart.punch_speed_max = 7
|
|
|
|
|
|
if not boost_cart.modpath then
|
|
error("\nWrong mod directory name! Please change it to 'boost_cart'.\n" ..
|
|
"See also: http://dev.minetest.net/Installing_Mods")
|
|
end
|
|
|
|
-- Support for non-default games
|
|
if not default.player_attached then
|
|
default.player_attached = {}
|
|
end
|
|
|
|
dofile(boost_cart.modpath.."/functions.lua")
|
|
dofile(boost_cart.modpath.."/rails.lua")
|
|
|
|
if minetest.global_exists("mesecon") then
|
|
dofile(boost_cart.modpath.."/detector.lua")
|
|
--else
|
|
-- minetest.register_alias("carts:powerrail", "boost_cart:detectorrail")
|
|
-- minetest.register_alias("carts:powerrail", "boost_cart:detectorrail_on")
|
|
end
|
|
|
|
boost_cart.mtg_compat = minetest.global_exists("carts") and carts.pathfinder
|
|
if boost_cart.mtg_compat then
|
|
minetest.log("action", "[boost_cart] Overwriting definitions of similar carts mod")
|
|
end
|
|
dofile(boost_cart.modpath.."/cart_entity.lua")
|