From a5f700e0645bad3f1662f724a9ae8cc94f82b2d1 Mon Sep 17 00:00:00 2001 From: ReddeyfishVor <36580397+ReddeyfishVor@users.noreply.github.com> Date: Mon, 16 Apr 2018 00:32:48 -0700 Subject: [PATCH] Reduce mining mob spawner frequency --- code/modules/random_map/automata/caves.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/random_map/automata/caves.dm b/code/modules/random_map/automata/caves.dm index dd6398d091..7b9df09ea4 100644 --- a/code/modules/random_map/automata/caves.dm +++ b/code/modules/random_map/automata/caves.dm @@ -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 \ No newline at end of file + return T