From 8ee6e1f842ea4cc04fa7ad7d6070fb2d4cbf7a31 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Tue, 19 Feb 2019 02:35:02 -0700 Subject: [PATCH] Adds lizardman to mutants event +Adds lizardmen to mutants event. +Also 100% fixes a 33% chance for 100% nothing to spawn. --- code/modules/events/mutants.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/mutants.dm b/code/modules/events/mutants.dm index 119a0deabf..cfb96de566 100644 --- a/code/modules/events/mutants.dm +++ b/code/modules/events/mutants.dm @@ -61,14 +61,14 @@ var/list/spawn_types = list() var/max_number - vermin = rand(0,2) + vermin = rand(0,1) switch(vermin) if(VERM_RATS) spawn_types = list(/mob/living/simple_animal/mouse/event) max_number = 6 vermstring = "mutant mice" if(VERM_LIZARDMEN) - spawn_types = list(/mob/living/simple_animal/lizard) + spawn_types = list(/mob/living/simple_animal/lizard/event) max_number = 6 vermstring = "mutant lizards"