[sneeker] Update to Git commit e948a58:

https://github.com/AntumDeluge/mtmod-sneeker/tree/e948a58
This commit is contained in:
AntumDeluge 2017-06-01 15:28:57 -07:00
parent 315a1d90cc
commit df12f18dcc
4 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
* mobiles/aggressive/
* [mobs_goblins][] ([CC-BY-SA / CC-BY / CC0][lic.mobs_goblins]) -- version: [a346f85 Git][ver.mobs_goblins] *2015-09-12* ([patched][patch.mobs_goblins])
* [mobs_monster][] ([MIT][lic.mobs_monster]) -- version: [f6d0e01 Git][ver.mobs_monster] *2017-04-27*
* [sneeker][] ([WTFPL][lic.wtfpl] / [CC0][lic.cc0]) -- version: [046e7d5 Git][ver.sneeker] *2017-06-01*
* [sneeker][] ([WTFPL][lic.wtfpl] / [CC0][lic.cc0]) -- version: [e948a58 Git][ver.sneeker] *2017-06-01*
* [spidermob][] ([LGPL][lic.lgpl2.1] / [CC BY-SA][lic.ccbysa3.0] / [MIT][lic.mit] / [WTFPL][lic.spidermob] / [Unlicense][lic.unlicense]) -- version [c72d2ff Git][ver.spidermob] *2016-08-14* ([patched][patch.spidermob])
* mobiles/engine/
* [mobs_redo][] ([MIT][lic.mobs_redo]) -- version: [7de8bc4 Git][ver.mobs_redo] *2017-05-12* ([patched][patch.mobs_redo])
@ -468,7 +468,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[ver.signs_lib]: https://github.com/minetest-mods/signs_lib/tree/2c36937
[ver.simple_protection]: https://github.com/SmallJoker/simple_protection/tree/23c024f
[ver.slingshot]: https://github.com/AntumDeluge/mtmod-slingshot/tree/1c40c25
[ver.sneeker]: https://github.com/AntumDeluge/mtmod-sneeker/tree/046e7d5
[ver.sneeker]: https://github.com/AntumDeluge/mtmod-sneeker/tree/e948a58
[ver.snowdrift]: https://github.com/paramat/snowdrift/tree/fcb0537
[ver.spawneggs]: https://github.com/thefamilygrog66/spawneggs/tree/4650370
[ver.spectator_mode]: https://github.com/minetest-mods/spectator_mode/tree/7d68bec

View File

@ -2,7 +2,7 @@
sneeker.debug (Log debug output) bool false
# Sets maximum number of spawns that can exist in world.
sneeker.spawn_cap (Maximum spawns) int 25
sneeker.spawn_cap (Maximum spawns) int 10
# Sets possibility for spawn.
sneeker.spawn_chance (Spawn chance) int 1000

View File

@ -5,7 +5,7 @@ local time_min = 60
local time_hr = time_min * 60
local time_day = time_hr * 24
local spawn_cap = minetest.setting_get('sneeker.spawn_cap') or 25 -- Maximum number of spawns active at one time
local spawn_cap = minetest.setting_get('sneeker.spawn_cap') or 10 -- Maximum number of spawns active at one time
local spawn_chance = minetest.setting_get('sneeker.spawn_chance') or 1000 -- 1/1000 chance of spawn
local spawn_interval = minetest.setting_get('sneeker.spawn_interval') or time_min * 4 -- Default interval is 4 minutes
local spawn_maxlight = minetest.setting_get('sneeker.spawn_maxlight') or 5 -- Maximum light of node for spawn

View File

@ -152,7 +152,7 @@ mobs.enable_penguin (Enable penguin) bool true
sneeker.debug (Log debug output) bool false
# Sets maximum number of spawns that can exist in world.
sneeker.spawn_cap (Maximum spawns) int 25
sneeker.spawn_cap (Maximum spawns) int 10
# Sets possibility for spawn.
sneeker.spawn_chance (Spawn chance) int 2