TU43 Release 3

+ Gameplay changes
Stained clay renamed to "Hardened Clay" (e.g. White Hardened Clay)
Gold ore now generates in mesa biomes between Y=32 and Y=79
Shears can no longer be enchanted with Silk Touch
Pigs can be led/bred with potatoes and beetroots (in addition to carrots)
Elder Guardians now drop dry sponges instead of wet sponges
Endermen now spawn in the Nether
This commit is contained in:
Tranqlmao
2026-07-07 15:07:01 -04:00
parent 9bbd4b3e90
commit d1bf3952cd
8 changed files with 38 additions and 20 deletions
+7
View File
@@ -182,6 +182,13 @@ BandEntry MesaBiome::getBand(int x, int y, int z)
void MesaBiome::decorate(Level* level, Random* random, int xo, int zo)
{
Biome::decorate(level, random, xo, zo);
decorator->level = level;
decorator->random = random;
decorator->xo = xo;
decorator->zo = zo;
decorator->decorateDepthSpan(20, decorator->goldOreFeature, 32, 80);
decorator->level = nullptr;
decorator->random = nullptr;
}
Feature* MesaBiome::getTreeFeature(Random* random)