From 8fba809b07223f132d29c06ffe31f85033f6415d Mon Sep 17 00:00:00 2001 From: courierbravo <73250577+courierbravo@users.noreply.github.com> Date: Sun, 18 Aug 2024 06:03:38 -0700 Subject: [PATCH] Spell Check - Encryption Keys (#19789) Fixes the spelling of the operations manager radio key's name. Fixes the spelling in the bluespace encryption key's description. --- .../items/devices/radio/encryptionkey.dm | 4 +- .../courierbravo-encryptionkey-spellcheck.yml | 59 +++++++++++++++++++ 2 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/courierbravo-encryptionkey-spellcheck.yml diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index 25a2fdcec7c..160483b5924 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -87,7 +87,7 @@ /obj/item/device/encryptionkey/bluespace name = "bluespace encryption key" - desc = "A non-sensical mimickry of a standard encryption key, in the form of an elongated bluespace crystal. It seems to function." + desc = "A nonsensical mimicry of a standard encryption key, in the form of an elongated bluespace crystal. It seems to function." icon_state = "bs_cyperkey" additional_channels = list(CHANNEL_BLUESPACE = TRUE) origin_tech = list(TECH_BLUESPACE = 3) @@ -197,7 +197,7 @@ channels = list(CHANNEL_SUPPLY = TRUE, CHANNEL_HAILING = TRUE) /obj/item/device/encryptionkey/headset_operations_manager - name = "operations managaer radio encryption key" + name = "operations manager radio encryption key" icon_state = "cargo_cypherkey" channels = list(CHANNEL_COMMAND = TRUE, CHANNEL_SUPPLY = TRUE, CHANNEL_HAILING = TRUE) diff --git a/html/changelogs/courierbravo-encryptionkey-spellcheck.yml b/html/changelogs/courierbravo-encryptionkey-spellcheck.yml new file mode 100644 index 00000000000..aea55f75f7d --- /dev/null +++ b/html/changelogs/courierbravo-encryptionkey-spellcheck.yml @@ -0,0 +1,59 @@ +################################ +# 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 +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: CourierBravo + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - spellcheck: "Fixed the name of the Operations Manager radio key." + - spellcheck: "Fixed a couple typos in the bluespace encryption key"