README update

This commit is contained in:
Juraj Vajda 2016-01-14 00:31:53 +01:00
parent c26389c8c1
commit 8d38193603
2 changed files with 11 additions and 2 deletions

View File

@ -33,6 +33,16 @@ fake_fire, xpanes for recipes
WTFPL WTFPL
## Changelog ## ## Changelog ##
### 0.3 ###
* new folder and file structure
* more convenient disable/enable, add/remove new MODs in config.lua file - added property for custom sounds
* added sound for bunny
* fixed sound for pyramids:mummy
* added footsteps and digging sounds for the spawners
* shorter and more effective code, easier to read, fixed variable namings
* ABM tweak - longer delay to trigger but bigger chance for spawn entity
* disabled ABM catch_up
### 0.2 ### ### 0.2 ###
* support pyramids mod - mummy * support pyramids mod - mummy
* support creatures mod * support creatures mod

View File

@ -194,11 +194,10 @@ function spawners.create(mob_name, mod_prefix, size, offset, mesh, texture, nigh
end end
-- create all spawners and crafting recipes -- create all spawners
for i, mob_table in ipairs(spawners.mob_tables) do for i, mob_table in ipairs(spawners.mob_tables) do
if mob_table then if mob_table then
-- spawners
spawners.create(mob_table.name, mob_table.mod_prefix, mob_table.dummy_size, mob_table.dummy_offset, mob_table.dummy_mesh, mob_table.dummy_texture, mob_table.night_only, mob_table.sound_custom) spawners.create(mob_table.name, mob_table.mod_prefix, mob_table.dummy_size, mob_table.dummy_offset, mob_table.dummy_mesh, mob_table.dummy_texture, mob_table.night_only, mob_table.sound_custom)
end end
end end