namespacing

This commit is contained in:
2022-11-21 21:58:01 -05:00
parent 8c838a9dde
commit c77289c9ca
115 changed files with 0 additions and 176 deletions

View File

@@ -0,0 +1,25 @@
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")
print("[MOD] Mobs Redo loaded")