mirror of
https://github.com/SmallJoker/boost_cart.git
synced 2024-11-15 15:20:20 +01:00
34 lines
1.1 KiB
Lua
34 lines
1.1 KiB
Lua
modDirectory = "boostcart"
|
|
boost_cart = {}
|
|
boost_cart.modpath = minetest.get_modpath(modDirectory)
|
|
|
|
-- 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 '" ..modDirectory.. "'.\nSee 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")
|