boost_cart/init.lua

37 lines
1.1 KiB
Lua

boost_cart = {}
boost_cart.modpath = minetest.get_modpath("boost_cart")
if not minetest.settings then
error("[boost_cart] Your Minetest version is no longer supported."
.. " (Version <= 0.4.15)")
end
-- Maximal speed of the cart in m/s
boost_cart.speed_max = tonumber(minetest.settings:get("boost_cart.speed_max")) or 10
-- Set to -1 to disable punching the cart from inside
boost_cart.punch_speed_max =
tonumber(minetest.settings:get("boost_cart.punch_speed_max")) or 7
-- 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")