mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-05 15:23:50 +01:00
2bb416765c
This reverts the hierarchies ENTITIES/mcl_mobs, ENTITIES/mobs_mc and ENTITIES/mobs_mc_gameconfig to the state of commit 32c03dc27eb835fb60fdc2e396f6c3d5e5fc010d
14 lines
251 B
Lua
14 lines
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") |