Decrease mine mob spawner chance

This should halve the total amount of spawners in the mines.
This commit is contained in:
Razgriz
2021-06-21 00:38:09 -07:00
committed by GitHub
parent 2afe899967
commit 5b33f2c336

View File

@@ -52,7 +52,7 @@
if(!T.ignore_cavegen)
if(map[current_cell] == FLOOR_CHAR)
T.make_floor()
if(prob(1)) // 1 in 100 chance //CHOMP Add
if(prob(0.5)) // 1 in 200 chance //CHOMP Add
new /obj/structure/mob_spawner/scanner/mining_animals(T) //CHOMP Add
else
T.make_wall()