1
0

Reduce ghast spawn rate again

This commit is contained in:
Mat 2020-03-27 21:00:26 +02:00 committed by GitHub
parent c9b3d2d95a
commit 92cf553bf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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(0.1))
(random.RandBool(0.01))
);
}