From 8f6073281cddac260e6f6079642b0ad5dae10f33 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 15 Feb 2019 15:27:30 -0700 Subject: [PATCH] Decreased mice max spawn Mice max spawn decreased to 6 from 12. --- code/modules/events/infestation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/infestation.dm b/code/modules/events/infestation.dm index 2f3b8aeeee..5f3a85e15c 100644 --- a/code/modules/events/infestation.dm +++ b/code/modules/events/infestation.dm @@ -66,7 +66,7 @@ switch(vermin) if(VERM_MICE) spawn_types = list(/mob/living/simple_animal/mouse/event) - max_number = 12 + max_number = 6 vermstring = "mice" if(VERM_LIZARDS) spawn_types = list(/mob/living/simple_animal/lizard)