From 280844af6590bc61d993f985cb4f45336d982b2e Mon Sep 17 00:00:00 2001 From: Neerti Date: Tue, 15 Dec 2015 20:50:10 -0500 Subject: [PATCH] Update cult_structures.dm Deletes the commented out code. --- code/game/gamemodes/cult/cult_structures.dm | 38 --------------------- 1 file changed, 38 deletions(-) diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm index d6af1a27076..226df14bfbc 100644 --- a/code/game/gamemodes/cult/cult_structures.dm +++ b/code/game/gamemodes/cult/cult_structures.dm @@ -138,41 +138,3 @@ var/mob/living/M = A M << "Walking into \the [src] is probably a bad idea, you think." -/* - if(M.stat != DEAD) - if(M.transforming) - return - if(M.has_brain_worms()) - return //Borer stuff - RR - - if(iscultist(M)) return - if(!ishuman(M) && !isrobot(M)) return - - M.transforming = 1 - M.canmove = 0 - M.icon = null - M.overlays.len = 0 - M.invisibility = 101 - - if(istype(M, /mob/living/silicon/robot)) - var/mob/living/silicon/robot/Robot = M - if(Robot.mmi) - qdel(Robot.mmi) - else - for(var/obj/item/W in M) - if(istype(W, /obj/item/weapon/implant)) - qdel(W) - continue - W.layer = initial(W.layer) - W.loc = M.loc - W.dropped(M) - - var/mob/living/new_mob = new /mob/living/simple_animal/corgi(A.loc) - new_mob.a_intent = I_HURT - if(M.mind) - M.mind.transfer_to(new_mob) - else - new_mob.key = M.key - - new_mob << "Your form morphs into that of a corgi." //Because we don't have cluwnes -*/