From f512a00883fa463f1770e314a761b5492b2a673a Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Mon, 18 Jan 2016 18:17:59 -0500 Subject: [PATCH 1/2] Fixes Swarmer Cryopod Eating --- code/game/gamemodes/miniantags/bot_swarm/swarmer.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm index f4fb0bd59d1..c9dc4b93707 100644 --- a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm +++ b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm @@ -224,13 +224,18 @@ /obj/machinery/blackbox_recorder/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) S << "This machine has recorded large amounts of data on this structure and its inhabitants, it will be a useful resource to our masters in the future. Aborting. " - /obj/machinery/power/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) S << "Disrupting the power grid would bring no benefit to us. Aborting." /obj/machinery/gateway/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) S << "This bluespace source will be important to us later. Aborting." +/obj/machinery/cryopod/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) + S << "This cryogenic sleeper should be preserved, it will be a useful resource to our masters in the future. Aborting." + +/obj/structure/cryofeed/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) + S << "This cryogenic feed should be preserved, it will be a useful resource to our masters in the future. Aborting." + /turf/simulated/wall/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) for(var/turf/T in range(1, src)) if(istype(T, /turf/space) || istype(T.loc, /area/space)) From f67959b5715e1cc6e205a451d6f47cc941433030 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Mon, 18 Jan 2016 18:55:44 -0500 Subject: [PATCH 2/2] cryo computer --- code/game/gamemodes/miniantags/bot_swarm/swarmer.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm index c9dc4b93707..99f0f98e256 100644 --- a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm +++ b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm @@ -236,6 +236,9 @@ /obj/structure/cryofeed/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) S << "This cryogenic feed should be preserved, it will be a useful resource to our masters in the future. Aborting." +/obj/machinery/computer/cryopod/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) + S << "This cryopod control computer should be preserved, it contains useful items and information about the inhabitants. Aborting." + /turf/simulated/wall/swarmer_act(mob/living/simple_animal/hostile/swarmer/S) for(var/turf/T in range(1, src)) if(istype(T, /turf/space) || istype(T.loc, /area/space))