mobs_redo/init.lua

26 lines
481 B
Lua
Raw Permalink Normal View History

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
})
2016-04-15 07:51:04 -07:00
-- Mob API
2016-12-01 10:41:27 -08:00
dofile(path .. "/api.lua")
-- Rideable Mobs
dofile(path .. "/mount.lua")
-- Mob Items
2016-12-01 10:41:27 -08:00
dofile(path .. "/crafts.lua")
2016-12-01 10:41:27 -08:00
-- Mob Spawner
dofile(path .. "/spawner.lua")
-- Lucky Blocks
dofile(path .. "/lucky_block.lua")
2021-11-14 06:21:32 -08:00
print("[MOD] Mobs Redo loaded")