[bugfix] hotfix 07.09.2024

This commit is contained in:
IamPyu 2024-07-09 14:39:52 -06:00
parent 70baa5251c
commit be955941a2
4 changed files with 20 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## [Jul 9th 2024] Hotfix: 07.09.2024
- Fix ores not spawning in any Y level below PyuTestCore_DeepOceanMin (-31)
- Saplings now spawn trees for all new different tree types
## [Jul 7th - Jul 8th 2024] Major Update: World and Building Update
This update aims to update the world generation and add new building blocks!

View File

@ -448,7 +448,14 @@ PyuTestCore.make_node("pyutest_core:tree_sapling", "Tree Sapling", {
on_timer = function (pos)
local trees = {
"tree",
"tree2"
"tree2",
"tree3",
"tree4",
"tree5",
"tree6",
"tree7",
"tree8",
"stree"
}
math.randomseed(os.time())

View File

@ -15,4 +15,3 @@ end
PyuTestCore.make_sword("pyutest_core:iron_sword", "Iron Sword", "iron-sword.png", 7, 750)
PyuTestCore.make_sword("pyutest_core:diamond_sword", "Diamond Sword", "diamond-sword.png", 12, 1200)

View File

@ -102,6 +102,13 @@ PyuTestCore.register_biome({
humidity_point = 40
})
PyuTestCore.register_biome({
name = "cave",
y_max = PyuTestCore_DeepOceanMin,
y_min = PyuTestCore_WorldBottom
})
PyuTestCore.register_biome({
name = "grassland",