From 1bc73bd0542004349d870e849853bead792889f3 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sun, 5 Apr 2015 21:06:44 +0200 Subject: [PATCH] Prevent life reagent from spawning spaceworms Spaceworms are specifically designed as an adminbooze mob- they are NOT currently balanced to be spawned by any reactions or such. They even can qdel things that they eat. --- code/modules/reagents/newchem/medicine.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/newchem/medicine.dm b/code/modules/reagents/newchem/medicine.dm index 8c56c30bdd2..e7036f254e5 100644 --- a/code/modules/reagents/newchem/medicine.dm +++ b/code/modules/reagents/newchem/medicine.dm @@ -714,7 +714,8 @@ proc/chemical_mob_spawn(var/datum/reagents/holder, var/amount_to_spawn, var/reac /mob/living/simple_animal/hostile/asteroid/hivelord, /mob/living/simple_animal/hostile/asteroid/hivelordbrood, /mob/living/simple_animal/hostile/carp/holocarp, - /mob/living/simple_animal/hostile/mining_drone + /mob/living/simple_animal/hostile/mining_drone, + /mob/living/simple_animal/hostile/spaceWorm )//exclusion list for things you don't want the reaction to create. var/list/critters = typesof(/mob/living/simple_animal/hostile) - blocked // list of possible hostile mobs var/atom/A = holder.my_atom