mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 23:31:05 +01:00
13 lines
223 B
Lua
13 lines
223 B
Lua
|
|
local path = minetest.get_modpath("mobs")
|
|
|
|
-- Mob API
|
|
dofile(path .. "/api.lua")
|
|
|
|
-- Rideable Mobs
|
|
dofile(path .. "/mount.lua")
|
|
|
|
-- Mob Items
|
|
dofile(path .. "/crafts.lua")
|
|
|
|
minetest.log("action", "[MOD] Mobs Redo loaded")
|