From 4efa7e1b8dadf69db488d6256cad6087d76dc80d Mon Sep 17 00:00:00 2001 From: Rob Nelson Date: Tue, 25 Feb 2014 15:25:14 -0800 Subject: [PATCH] Prevent the PA from getting animated. Fixes Redmine #116 --- code/modules/mob/living/simple_animal/hostile/mimic.dm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/mimic.dm b/code/modules/mob/living/simple_animal/hostile/mimic.dm index 5da7fb6e760..c858cc7b7ba 100644 --- a/code/modules/mob/living/simple_animal/hostile/mimic.dm +++ b/code/modules/mob/living/simple_animal/hostile/mimic.dm @@ -127,7 +127,12 @@ // Copy Mimic // -var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/cable, /obj/structure/window) +var/global/list/protected_objects = list( + /obj/structure/table, + /obj/structure/cable, + /obj/structure/window, + /obj/structure/particle_accelerator // /vg/ Redmine #116 +) /mob/living/simple_animal/hostile/mimic/copy @@ -201,4 +206,4 @@ var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/ca if(owner != creator) LoseTarget() creator = owner - faction = "\ref[owner]" \ No newline at end of file + faction = "\ref[owner]"