From 9b9392801ca24de2140a1a971e3e97565fdc5e1e Mon Sep 17 00:00:00 2001 From: "Wowzewow (Wezzy)" <42310821+alsoandanswer@users.noreply.github.com> Date: Thu, 12 Oct 2023 22:37:22 +0800 Subject: [PATCH] tweaks mindshield text (#17528) * tweaks mindshield text should be in line with the old loyalty implant now * Update mindshield.dm --- .../weapons/implants/implants/mindshield.dm | 2 +- html/changelogs/wezzy_implanttweak.yml | 41 +++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/wezzy_implanttweak.yml diff --git a/code/game/objects/items/weapons/implants/implants/mindshield.dm b/code/game/objects/items/weapons/implants/implants/mindshield.dm index e394ed9ee8e..2f7fd09783f 100644 --- a/code/game/objects/items/weapons/implants/implants/mindshield.dm +++ b/code/game/objects/items/weapons/implants/implants/mindshield.dm @@ -24,7 +24,7 @@ Integrity: Implant will last so long as the nanobots are inside the bloodstream."} /obj/item/implant/mindshield/implanted(mob/M) - to_chat(M, SPAN_SUBTLE("You feel a weird feeling, as the implant's nanobots disperse through your brain.")) + to_chat(M, SPAN_GOOD("You feel your mind steel against external suggestion!")) if(istype(M, /mob/living/carbon/human)) var/mob/living/carbon/human/H = M for(var/obj/item/implant/mindshield/loyalty/I in H) diff --git a/html/changelogs/wezzy_implanttweak.yml b/html/changelogs/wezzy_implanttweak.yml new file mode 100644 index 00000000000..78676a9c4f1 --- /dev/null +++ b/html/changelogs/wezzy_implanttweak.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Wowzewow (Wezzy) + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Tweaks the mindshield implant's message to be in line with the loyalty implant."