Adds lizardman to mutants event

+Adds lizardmen to mutants event.
+Also 100% fixes a 33% chance for 100% nothing to spawn.
This commit is contained in:
Razgriz
2019-02-19 02:35:02 -07:00
committed by GitHub
parent 830ce62415
commit 8ee6e1f842
+2 -2
View File
@@ -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"