Merge pull request #116 from CHOMPstation/ReddeyfishVor-mobSpawner

Reduce mining mob spawner frequency
This commit is contained in:
ReddeyfishVor
2018-04-16 00:47:48 -07:00
committed by GitHub
+2 -2
View File
@@ -56,7 +56,7 @@
//T.ChangeTurf(/turf/space/cracked_asteroid)
//CHOMPStation Edit
if(rand(1, 40) == 1) // 1 in 40 chance
if(rand(1, 100) == 1) // 1 in 100 chance
new /obj/structure/mob_spawner/scanner/mining_animals(T)
else
T.make_wall()
@@ -65,4 +65,4 @@
else if(map[current_cell] == EMPTY_CHAR)
T.make_ore(1)
get_additional_spawns(map[current_cell],T,get_spawn_dir(x, y))
return T
return T