Codebase list minetest-mod-mobs-redo / 0a55af7b-2473-470c-a79c-3f33f57bcaca/main init.lua
0a55af7b-2473-470c-a79c-3f33f57bcaca/main

Tree @0a55af7b-2473-470c-a79c-3f33f57bcaca/main (Download .tar.gz)

init.lua @0a55af7b-2473-470c-a79c-3f33f57bcaca/mainraw · history · blame

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")

minetest.log("action", "[MOD] Mobs Redo loaded")