e4fc58c772
subrepo: subdir: "mods/mobs_redo" merged: "da5e8ef" upstream: origin: "https://github.com/tenplus1/mobs_redo.git" branch: "master" commit: "da5e8ef" git-subrepo: version: "0.3.1" origin: "https://github.com/ingydotnet/git-subrepo" commit: "a7ee886"
20 lines
306 B
Lua
20 lines
306 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")
|
|
|
|
-- Mob Spawner
|
|
dofile(path .. "/spawner.lua")
|
|
|
|
-- Lucky Blocks
|
|
dofile(path .. "/lucky_block.lua")
|
|
|
|
print ("[MOD] Mobs Redo loaded")
|