diff --git a/CHANGELOG.md b/CHANGELOG.md index bc23a04..9d0f5a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ I should just start giving updates a version number to avoid naming updates. - Improved death messages more - Make Apple texture look more like other food textures - Add a light fog to snowy biomes +- Make Taigas more dense ## [Oct 20th - Nov 2nd] Update: The Something Update diff --git a/mods/PLAYER/pyutest_player/init.lua b/mods/PLAYER/pyutest_player/init.lua index 7a3a3ad..fa1bfdf 100644 --- a/mods/PLAYER/pyutest_player/init.lua +++ b/mods/PLAYER/pyutest_player/init.lua @@ -45,7 +45,13 @@ minetest.register_item(":", { -- player effects minetest.register_globalstep(function () + for _, v in pairs(minetest.get_connected_players()) do + local speed_multiplier = 1 + v:set_physics_override({ + speed = 1.15 * speed_multiplier + }) + end end) if minetest.is_creative_enabled("") then diff --git a/mods/WORLD/pyutest_overworld/trees.lua b/mods/WORLD/pyutest_overworld/trees.lua index 3bf7ae3..cbb883a 100644 --- a/mods/WORLD/pyutest_overworld/trees.lua +++ b/mods/WORLD/pyutest_overworld/trees.lua @@ -136,7 +136,7 @@ minetest.register_decoration({ deco_type = "schematic", place_on = { "group:grass" }, sidelen = 16, - fill_ratio = 0.005, + fill_ratio = 0.018, biomes = { "Taiga" }, schematic = PyuTest.get_schematic_path("TaigaTree"), rotation = "random",