Make Taigas more dense, increase player speed

This commit is contained in:
IamPyu 2024-11-21 17:35:28 -06:00
parent dc0234da4c
commit c146af13ff
3 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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",