From 20bbc0888d51dba65c96a85b85dc25276d928e60 Mon Sep 17 00:00:00 2001 From: BlackMajor Date: Sat, 18 May 2019 17:42:17 +1200 Subject: [PATCH] Ling hivemind no longer turns apostrophes into ' Because They're not enjoying speaking gibberish for having proper grammar. --- code/modules/antagonists/changeling/powers/hivemind.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/changeling/powers/hivemind.dm b/code/modules/antagonists/changeling/powers/hivemind.dm index b72123da6f..a33dab31c3 100644 --- a/code/modules/antagonists/changeling/powers/hivemind.dm +++ b/code/modules/antagonists/changeling/powers/hivemind.dm @@ -13,7 +13,7 @@ if (user.has_trait(CHANGELING_HIVEMIND_MUTE)) to_chat(user, "The poison in the air hinders our ability to interact with the hivemind.") return - var/input = stripped_input(usr, "Please choose a message to transmit.", "Changeling Hivemind", "") + var/input = html_decode(stripped_input(usr, "Please choose a message to transmit.", "Changeling Hivemind", "")) user.say(".g[input]") /obj/effect/proc_holder/changeling/hivemind_comms/on_purchase(mob/user, is_respec)