quick commit

This commit is contained in:
2022-11-21 19:01:11 -05:00
parent f733553652
commit 3e628e5087
67 changed files with 8997 additions and 0 deletions

25
mods/mobs_redo/init.lua Normal file
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")