From fb0b5ff8fdbf793c29193800cc844003effe6274 Mon Sep 17 00:00:00 2001 From: Cluwnes Honk Date: Wed, 22 Jan 2014 21:56:05 -0800 Subject: [PATCH] Allows borers to be stealthy Removes some messages that go to a host when a borer does shit. In a world of validhunters, the borer cannot survive. Conflicts: code/modules/mob/living/simple_animal/borer.dm --- code/modules/mob/living/simple_animal/borer.dm | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/code/modules/mob/living/simple_animal/borer.dm b/code/modules/mob/living/simple_animal/borer.dm index 51dfe1ac108..5411500c15c 100644 --- a/code/modules/mob/living/simple_animal/borer.dm +++ b/code/modules/mob/living/simple_animal/borer.dm @@ -294,9 +294,6 @@ src << "You begin disconnecting from [host]'s synapses and prodding at their internal ear canal." - if(!host.stat) - host << "An odd, uncomfortable pressure begins to build inside your skull, behind your ear..." - spawn(200) if(!host || !src) return @@ -306,8 +303,6 @@ return src << "You wiggle out of [host]'s ear and plop to the ground." - if(!host.stat) - host << "Something slimy wiggles out of your ear and plops to the ground!" detatch() @@ -376,7 +371,7 @@ mob/living/simple_animal/borer/proc/detatch() src << "You cannot get through that host's protective gear." return */ - M << "Something slimy begins probing at the opening of your ear canal..." + src << "You slither up [M] and begin probing at their ear canal..." if(!do_after(src,50)) @@ -395,11 +390,7 @@ mob/living/simple_animal/borer/proc/detatch() if(M in view(1, src)) src << "You wiggle into [M]'s ear." - if(!M.stat) - M << "Something disgusting and slimy wiggles into your ear!" - - src.perform_infestation(M) - + src.perform_infestation(M) return else src << "They are no longer in range!" @@ -511,4 +502,4 @@ mob/living/simple_animal/borer/proc/transfer_personality(var/client/candidate) src << text("\green You have stopped hiding.") for(var/mob/O in oviewers(src, null)) if ((O.client && !( O.blinded ))) - O << text("[] slowly peaks up from the ground...", src) \ No newline at end of file + O << text("[] slowly peaks up from the ground...", src)