spawners/spawners_env/init.lua

35 lines
1.4 KiB
Lua
Raw Normal View History

2023-04-24 17:56:28 +03:00
--[[
Adds environmental spawners to the map. When enabled, the spawners will be added to newly generated Dungeons (Uruk Hai) and Temples (Spider). They are dropping a real mob spawner by change (very small chance).
Copyright (C) 2016 - 2023 SaKeL <juraj.vajda@gmail.com>
2016-10-09 23:05:30 +03:00
2023-04-24 17:56:28 +03:00
This library is free software; you can redistribute it and/or
modify it pos the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to juraj.vajda@gmail.com
--]]
local mod_start_time = minetest.get_us_time()
local path = minetest.get_modpath('spawners_env')
2016-10-08 21:54:26 +03:00
-- API
2023-04-24 17:56:28 +03:00
dofile(path .. '/api.lua')
-- Spawners configurations
dofile(path .. '/config.lua')
2016-10-08 21:54:26 +03:00
2016-10-13 00:49:57 +03:00
-- Spawners for mobs
2023-04-24 17:56:28 +03:00
dofile(path .. '/spawners_env.lua')
dofile(path .. '/spawners_gen.lua')
local mod_end_time = (minetest.get_us_time() - mod_start_time) / 1000000
2016-10-08 21:54:26 +03:00
2023-04-24 17:56:28 +03:00
print('[Mod] Spawners Environmental Loaded. [' .. mod_end_time .. 's]')