Increased silver dungeon rarity again.

This commit is contained in:
bconlon 2020-07-20 17:14:53 -07:00
parent 6fc9a898c2
commit 58a0fce9e9

View file

@ -24,9 +24,9 @@ public class MapGenSilverDungeon extends MapGenStructure {
protected boolean canSpawnStructureAtCoords(int chunkX, int chunkZ) {
RandomTracker randomTracker = new RandomTracker();
if (randomTracker.testRandom(this.rand, 100) != 0)
if (randomTracker.testRandom(this.rand, 120) != 0)
{
if (randomTracker.testRandom(this.rand, 140) != 0)
if (randomTracker.testRandom(this.rand, 160) != 0)
{
return false;
}