diff --git a/README.md b/README.md index 7153601..d6e97f0 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,16 @@ fake_fire, xpanes for recipes WTFPL ## 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 ### * support pyramids mod - mummy * support creatures mod diff --git a/spawners_mobs.lua b/spawners_mobs.lua index 29058e9..118b316 100644 --- a/spawners_mobs.lua +++ b/spawners_mobs.lua @@ -194,11 +194,10 @@ function spawners.create(mob_name, mod_prefix, size, offset, mesh, texture, nigh end --- create all spawners and crafting recipes +-- create all spawners for i, mob_table in ipairs(spawners.mob_tables) do 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) end end \ No newline at end of file