From ce1ac396ff8ea78e37957d770d32cb7b568bc6b1 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 15 Feb 2019 03:57:21 -0700 Subject: [PATCH] Evolving Mice event Replaces the incredibly boring and mundane mice station event with mice that will evolve, demanding a bit more attention. --- 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 540e301efb..2f3b8aeeee 100644 --- a/code/modules/events/infestation.dm +++ b/code/modules/events/infestation.dm @@ -65,7 +65,7 @@ vermin = rand(0,2) switch(vermin) if(VERM_MICE) - spawn_types = list(/mob/living/simple_animal/mouse/gray, /mob/living/simple_animal/mouse/brown, /mob/living/simple_animal/mouse/white) + spawn_types = list(/mob/living/simple_animal/mouse/event) max_number = 12 vermstring = "mice" if(VERM_LIZARDS)