From 756be9a3c86a70bf578f821ac29b7ef88b0bdb26 Mon Sep 17 00:00:00 2001
From: WickedCybs <52309324+WickedCybs@users.noreply.github.com>
Date: Wed, 13 Oct 2021 13:40:19 -0600
Subject: [PATCH] Antag Implants Will No Longer Point To an Unusable Emote
(#12614)
---
code/game/objects/items/weapons/implants/implant.dm | 2 +-
code/game/objects/items/weapons/implants/implantfreedom.dm | 2 +-
code/game/objects/items/weapons/implants/implantuplink.dm | 4 ++--
html/changelogs/wickedcybs_twitch.yml | 6 ++++++
4 files changed, 10 insertions(+), 4 deletions(-)
create mode 100644 html/changelogs/wickedcybs_twitch.yml
diff --git a/code/game/objects/items/weapons/implants/implant.dm b/code/game/objects/items/weapons/implants/implant.dm
index fc1f0c0ce8a..25880d8cd1a 100644
--- a/code/game/objects/items/weapons/implants/implant.dm
+++ b/code/game/objects/items/weapons/implants/implant.dm
@@ -651,7 +651,7 @@ the implant may become unstable and either pre-maturely inject the subject or si
qdel(src)
/obj/item/implant/compressed/implanted(mob/source as mob)
- src.activation_emote = input("Choose activation emote:") in list("blink", "blink_r", "eyebrow", "chuckle", "twitch_s", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
+ src.activation_emote = input("Choose activation emote:") in list("blink", "blink_r", "eyebrow", "chuckle", "twitch", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
if (source.mind)
source.mind.store_memory("Compressed matter implant can be activated by using the [src.activation_emote] emote, say *[src.activation_emote] to attempt to activate.", 0, 0)
to_chat(source, "The implanted compressed matter implant can be activated by using the [src.activation_emote] emote, say *[src.activation_emote] to attempt to activate.")
diff --git a/code/game/objects/items/weapons/implants/implantfreedom.dm b/code/game/objects/items/weapons/implants/implantfreedom.dm
index e097840d4c3..a4c670b0d21 100644
--- a/code/game/objects/items/weapons/implants/implantfreedom.dm
+++ b/code/game/objects/items/weapons/implants/implantfreedom.dm
@@ -9,7 +9,7 @@
New()
- src.activation_emote = pick("blink", "blink_r", "eyebrow", "chuckle", "twitch_s", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
+ src.activation_emote = pick("blink", "blink_r", "eyebrow", "chuckle", "twitch", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
src.uses = rand(1, 5)
..()
return
diff --git a/code/game/objects/items/weapons/implants/implantuplink.dm b/code/game/objects/items/weapons/implants/implantuplink.dm
index afdb03c7bce..5a8b8a328e8 100644
--- a/code/game/objects/items/weapons/implants/implantuplink.dm
+++ b/code/game/objects/items/weapons/implants/implantuplink.dm
@@ -4,14 +4,14 @@
var/activation_emote = "chuckle"
/obj/item/implant/uplink/New()
- activation_emote = pick("blink", "blink_r", "eyebrow", "chuckle", "twitch_s", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
+ activation_emote = pick("blink", "blink_r", "eyebrow", "chuckle", "twitch", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
hidden_uplink = new(src)
hidden_uplink.uses = round((DEFAULT_TELECRYSTAL_AMOUNT / 2) * 0.8)
..()
return
/obj/item/implant/uplink/implanted(mob/source)
- activation_emote = input("Choose activation emote:") in list("blink", "blink_r", "eyebrow", "chuckle", "twitch_s", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
+ activation_emote = input("Choose activation emote:") in list("blink", "blink_r", "eyebrow", "chuckle", "twitch", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
source.mind.store_memory("Uplink implant can be activated by using the [src.activation_emote] emote, say *[src.activation_emote] to attempt to activate.", 0, 0)
to_chat(source, "The implanted uplink implant can be activated by using the [src.activation_emote] emote, say *[src.activation_emote] to attempt to activate.")
hidden_uplink.uplink_owner = source.mind
diff --git a/html/changelogs/wickedcybs_twitch.yml b/html/changelogs/wickedcybs_twitch.yml
new file mode 100644
index 00000000000..201e72e5b03
--- /dev/null
+++ b/html/changelogs/wickedcybs_twitch.yml
@@ -0,0 +1,6 @@
+author: WickedCybs
+
+delete-after: True
+
+changes:
+ - bugfix: "Antag implants will no longer potentially require the use of an emote antags aren't allowed to do. That would be 'twitch_s'. It's been replaced with 'twitch' instead."
\ No newline at end of file