From 6575e43ae0d0663dc9024f2cd7c352048cb518d3 Mon Sep 17 00:00:00 2001 From: Geeves Date: Sun, 14 Mar 2021 14:04:50 +0200 Subject: [PATCH] Borer Nerve Message Fix (#11424) --- code/modules/mob/living/simple_animal/borer/borer.dm | 2 +- code/modules/mob/living/simple_animal/borer/borer_powers.dm | 2 +- html/changelogs/geeves-borer_nerve_fix.yml | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/geeves-borer_nerve_fix.yml diff --git a/code/modules/mob/living/simple_animal/borer/borer.dm b/code/modules/mob/living/simple_animal/borer/borer.dm index 98cfe3243b2..7e67a7eb23e 100644 --- a/code/modules/mob/living/simple_animal/borer/borer.dm +++ b/code/modules/mob/living/simple_animal/borer/borer.dm @@ -99,12 +99,12 @@ host.remove_language(LANGUAGE_BORER) host.remove_language(LANGUAGE_BORER_HIVEMIND) - to_chat(host, "You feel your nerves again as your control over your own body is restored.") host.verbs -= /mob/living/carbon/proc/release_control host.verbs -= /mob/living/carbon/proc/punish_host host.verbs -= /mob/living/carbon/proc/spawn_larvae if(host_brain) + to_chat(host_brain, FONT_LARGE(SPAN_NOTICE("You feel your nerves again as your control over your own body is restored."))) // these are here so bans and multikey warnings are not triggered on the wrong people when ckey is changed. // computer_id and IP are not updated magically on their own in offline mobs -walter0o diff --git a/code/modules/mob/living/simple_animal/borer/borer_powers.dm b/code/modules/mob/living/simple_animal/borer/borer_powers.dm index ebb3e3cbaad..0b1f6745338 100644 --- a/code/modules/mob/living/simple_animal/borer/borer_powers.dm +++ b/code/modules/mob/living/simple_animal/borer/borer_powers.dm @@ -361,7 +361,7 @@ var/mob/living/simple_animal/borer/B = has_brain_worms() if(B?.host_brain) - to_chat(src, SPAN_WARNING("You withdraw your probosci, releasing control of [B.host_brain]")) + to_chat(src, SPAN_WARNING("You withdraw your probosci, releasing control of [B.host_brain].")) B.detach() diff --git a/html/changelogs/geeves-borer_nerve_fix.yml b/html/changelogs/geeves-borer_nerve_fix.yml new file mode 100644 index 00000000000..6b5ab18ec48 --- /dev/null +++ b/html/changelogs/geeves-borer_nerve_fix.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Borers releasing control now properly give the host the message that they're back in control." \ No newline at end of file