feat(TU20): Implement more of la's TU21 patch file

Forgot to include changes in HellBiome.cpp and EatTileGoal.cpp

TU20:
1. Skeletons & Wither Skeletons now rarely spawn anywhere in the Nether
This commit is contained in:
2026-07-08 08:58:57 +03:00
parent 6c757e5322
commit 7933a0dec5
2 changed files with 8 additions and 3 deletions
+1
View File
@@ -14,4 +14,5 @@ HellBiome::HellBiome(int id) : Biome(id)
enemies.push_back(new MobSpawnerData(eTYPE_GHAST, 50, 4, 4));
enemies.push_back(new MobSpawnerData(eTYPE_PIGZOMBIE, 100, 4, 4));
enemies.push_back(new MobSpawnerData(eTYPE_LAVASLIME, 1, 4, 4));
enemies.push_back(new MobSpawnerData(eTYPE_SKELETON, 1, 4, 4));
}