Make Taigas more dense, increase player speed
This commit is contained in:
parent
dc0234da4c
commit
c146af13ff
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user