diff --git a/code/modules/mob/living/simple_animal/borer.dm b/code/modules/mob/living/simple_animal/borer.dm index df5ab8b6810..970bd26181e 100644 --- a/code/modules/mob/living/simple_animal/borer.dm +++ b/code/modules/mob/living/simple_animal/borer.dm @@ -42,7 +42,6 @@ var/chemicals = 10 // Chemicals used for reproduction and spitting neurotoxin. var/mob/living/carbon/human/host // Human host for the brain worm. var/truename // Name used for brainworm-speak. - var/bonded // Var for full bonding with the host brain. var/mob/living/captive_brain/host_brain // Used for swapping control of the body back and forth. var/controlling // Used in human death check. @@ -135,7 +134,7 @@ spawn(300+(host.brainloss*5)) - if(!host || !src) return + if(!host || !src || controlling) return else src << "\red You plunge your probosci deep into the cortex of the host brain, interfacing directly with their nervous system." @@ -165,7 +164,6 @@ mob/living/simple_animal/borer/verb/release_host() if(!host || !src) return src << "You begin disconnecting from [host]'s synapses and prodding at their internal ear canal." - bonded = 0 if(!host.stat) host << "An odd, uncomfortable pressure begins to build inside your skull, behind your ear..." @@ -264,7 +262,6 @@ mob/living/simple_animal/borer/proc/detatch() var/datum/organ/external/head = M.get_organ("head") head.implants += src src.loc = M - bonded = 0 host_brain.name = M.name host_brain.real_name = M.real_name