mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-05 07:41:06 +01:00
14 lines
No EOL
251 B
Lua
14 lines
No EOL
251 B
Lua
|
|
local path = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
-- Mob API
|
|
dofile(path .. "/api.lua")
|
|
|
|
-- Spawning Algorithm
|
|
dofile(path .. "/spawning.lua")
|
|
|
|
-- Rideable Mobs
|
|
dofile(path .. "/mount.lua")
|
|
|
|
-- Mob Items
|
|
dofile(path .. "/crafts.lua") |