mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-01-10 02:27:28 +01:00
12 lines
349 B
Lua
12 lines
349 B
Lua
local modname = minetest.get_current_modname()
|
|
|
|
mcl_minecarts = {}
|
|
local mod = mcl_minecarts
|
|
mcl_minecarts.modpath = minetest.get_modpath(modname)
|
|
mcl_minecarts.speed_max = 10
|
|
mcl_minecarts.check_float_time = 15
|
|
|
|
dofile(mcl_minecarts.modpath.."/functions.lua")
|
|
dofile(mcl_minecarts.modpath.."/rails.lua")
|
|
dofile(mcl_minecarts.modpath.."/carts.lua")
|