123456789101112131415161718192021222324252627282930 |
- 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
- if minetest.get_modpath("lucky_block") then
- dofile(path .. "/lucky_block.lua")
- end
- print("[MOD] Mobs Redo loaded")
|