From f812b9f4622d1ec2ed3c26f6a11b895d95f29c6f Mon Sep 17 00:00:00 2001 From: IamPyu Date: Sun, 6 Oct 2024 10:24:45 -0600 Subject: [PATCH] Unnamed Minor Update --- CHANGELOG.md | 5 +++++ mods/ENTITIES/pyutest_mobs/api.lua | 2 +- mods/ENTITIES/pyutest_mobs/init.lua | 4 ++-- mods/ITEMS/pyutest_flowers/init.lua | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92ccfd1..a24c852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [Oct 6th 2024] Unnamed Minor Update + +- Make monsters spawn less +- Update every node still using the old block group + ## [Oct 5th 2024] Unnamed Minor Update - Overworld bottom goes from -200 to -65 diff --git a/mods/ENTITIES/pyutest_mobs/api.lua b/mods/ENTITIES/pyutest_mobs/api.lua index 17d57ff..84d139c 100644 --- a/mods/ENTITIES/pyutest_mobs/api.lua +++ b/mods/ENTITIES/pyutest_mobs/api.lua @@ -18,7 +18,7 @@ PyuTest.create_boss_egg = function(mob_id, desc, texture, addegg, no_creative, c local cage_id = "pyutest_mobs:"..mob_name.."_spawn_cage" PyuTest.make_node(cage_id, desc:gsub("Spawn Egg", "") .. "Boss Spawner Cage", { - block = PyuTest.BLOCK_BREAKABLE_LONG + cracky = PyuTest.BLOCK_SLOW }, {"pyutest-cage.png"}, { drawtype = "glasslike", on_rightclick = function(pos) diff --git a/mods/ENTITIES/pyutest_mobs/init.lua b/mods/ENTITIES/pyutest_mobs/init.lua index e064beb..caa2f58 100644 --- a/mods/ENTITIES/pyutest_mobs/init.lua +++ b/mods/ENTITIES/pyutest_mobs/init.lua @@ -15,7 +15,7 @@ if not PyuTest.is_flat() then nodes = {"group:ground"}, interval = 4, chance = 1, - active_object_count = 12, + active_object_count = 5, min_light = 0, max_light = minetest.LIGHT_MAX, max_height = PyuTest.OVERWORLD_TOP, @@ -28,7 +28,7 @@ if not PyuTest.is_flat() then nodes = {"group:ground"}, interval = 2, chance = 2, - active_object_count = 15, + active_object_count = 7, min_light = 0, max_light = minetest.LIGHT_MAX, min_height = PyuTest.OVERWORLD_SURFACE_BOTTOM - 1, diff --git a/mods/ITEMS/pyutest_flowers/init.lua b/mods/ITEMS/pyutest_flowers/init.lua index bd46f0d..aff3cfb 100644 --- a/mods/ITEMS/pyutest_flowers/init.lua +++ b/mods/ITEMS/pyutest_flowers/init.lua @@ -41,7 +41,7 @@ PyuTest.make_flower("pyutest_flowers:grass_plant", "Grass", "pyutest-grass-plant PyuTest.make_flower("pyutest_flowers:sugarcane", "Sugarcane", "pyutest-sugarcane.png", "pyutest_flowers:green_dye", false, nil) PyuTest.make_node("pyutest_flowers:lilypad", "Lily Pad", { - block = PyuTest.BLOCK_BREAKABLE_INSTANT + oddly_breakable_by_hand = PyuTest.BLOCK_FAST }, {"pyutest-lilypad.png"}, { drawtype = "signlike", paramtype = "light", @@ -95,7 +95,7 @@ PyuTest.make_flower("pyutest_flowers:kelp", "Kelp", "pyutest-kelp.png", "pyutest PyuTest.make_flower("pyutest_flowers:small_mushroom", "Small Mushroom", "pyutest-mushroom-small.png", "pyutest_flowers:red_dye", false, nil, { groups = { - block = PyuTest.BLOCK_BREAKABLE_INSTANT, + oddly_breakable_by_hand = PyuTest.BLOCK_FAST, flammable = 1, flower = 1, dig_immediate = 1,