Codebase list minetest-mod-mobs-redo / upstream/20181016+git20210816.1.4c80a55 init.lua
upstream/20181016+git20210816.1.4c80a55

Tree @upstream/20181016+git20210816.1.4c80a55 (Download .tar.gz)

init.lua @upstream/20181016+git20210816.1.4c80a55raw · history · blame

local path = minetest.get_modpath("mobs")

-- Peaceful player privilege
minetest.register_privilege("peaceful_player", {
	description = "Prevents Mobs Redo mobs from attacking player",
	give_to_singleplayer = false
})

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