From 9b2dea84b7233b949df12133a72f4c7e7fe0793e Mon Sep 17 00:00:00 2001 From: DreamySkrell <107256943+DreamySkrell@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:52:13 +0200 Subject: [PATCH] Hivenet aug transmit fix (#19401) Hivenet aug transmit fix. ![image](https://github.com/Aurorastation/Aurora.3/assets/107256943/1023e662-f906-4e9f-b71b-ed67616178fb) currently on master transmitting is broken ![image](https://github.com/Aurorastation/Aurora.3/assets/107256943/7d8e6470-08ef-4eb6-83b6-f967a1e32547) with this PR it is fixed Co-authored-by: DreamySkrell <> --- code/modules/mob/living/carbon/human/human_powers.dm | 3 ++- html/changelogs/DreamySkrell-hivenet-aug-fix.yml | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/DreamySkrell-hivenet-aug-fix.yml diff --git a/code/modules/mob/living/carbon/human/human_powers.dm b/code/modules/mob/living/carbon/human/human_powers.dm index 16f4d61657c..aa92bf10241 100644 --- a/code/modules/mob/living/carbon/human/human_powers.dm +++ b/code/modules/mob/living/carbon/human/human_powers.dm @@ -2226,8 +2226,9 @@ var/message = input("What message do you wish to transmit?","Choose a message") as null|anything in messages if(!message) return + V.transmitting = TRUE - say(",9[message]") + say("[message]", GLOB.all_languages[LANGUAGE_VAURCA]) V.transmitting = FALSE /mob/living/carbon/human/proc/hivenet_manifest() diff --git a/html/changelogs/DreamySkrell-hivenet-aug-fix.yml b/html/changelogs/DreamySkrell-hivenet-aug-fix.yml new file mode 100644 index 00000000000..9dc3ed326db --- /dev/null +++ b/html/changelogs/DreamySkrell-hivenet-aug-fix.yml @@ -0,0 +1,7 @@ + +author: DreamySkrell + +delete-after: True + +changes: + - bugfix: "Hivenet aug transmit fix."