1
0

Reduce ghast spawn rate

This commit is contained in:
Mat
2020-03-27 20:29:43 +02:00
committed by GitHub
parent 7d8da81b92
commit c9b3d2d95a

View File

@@ -198,7 +198,7 @@ bool cMobSpawner::CanSpawnHere(cChunk * a_Chunk, Vector3i a_RelPos, eMonsterType
return (
(targetBlock == E_BLOCK_AIR) &&
(blockAbove == E_BLOCK_AIR) &&
(random.RandBool())
(random.RandBool(0.1))
);
}