From beedad9f68246ed2db343afc6da636f95dcf9d35 Mon Sep 17 00:00:00 2001 From: Tag114 <118570749+Tag114@users.noreply.github.com> Date: Fri, 13 Oct 2023 20:08:28 +0100 Subject: [PATCH] Punctuation fixes for the descriptions for Syndicate boxes, the Romanovich Cloud and several trench coats (#17580) * Adds missing full stop to sleek trench coat descriptions * Fixes missing space between words in Romanovich Cloud sector description * Adds missing full stop to syndiebox description * Changelog * Changelog edit * Changelog edit --- .../items/weapons/storage/uplink_kits.dm | 2 +- .../background/space_sectors/tauceti.dm | 2 +- code/modules/clothing/suits/miscellaneous.dm | 8 ++-- html/changelogs/tag114-punctuation.yml | 43 +++++++++++++++++++ 4 files changed, 49 insertions(+), 6 deletions(-) create mode 100644 html/changelogs/tag114-punctuation.yml diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index 40f5be5b039..3862eb47066 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -1,6 +1,6 @@ /obj/item/storage/box/syndie_kit name = "box" - desc = "A sleek, sturdy box" + desc = "A sleek, sturdy box." icon_state = "syndiebox" worn_overlay = "writing_syndie" diff --git a/code/modules/background/space_sectors/tauceti.dm b/code/modules/background/space_sectors/tauceti.dm index 13d4fd6dd67..eb3c029b73d 100644 --- a/code/modules/background/space_sectors/tauceti.dm +++ b/code/modules/background/space_sectors/tauceti.dm @@ -13,7 +13,7 @@ /datum/space_sector/romanovich name = SECTOR_ROMANOVICH description = "The Romanovich Cloud is a shell of icy, rocky and metallic bodies that orbit very distant Tau Ceti, past even the Dust Belt. Rich in deposits of precious and \ - semi-precious metals as well as radioactive elements, the Romanovich Cloud is the source of nearly all the raw materials used within Tau Ceti. The cloud is also one of the few\ + semi-precious metals as well as radioactive elements, the Romanovich Cloud is the source of nearly all the raw materials used within Tau Ceti. The cloud is also one of the few \ sources of Phoron, a volatile but highly-sought after compound, known for its uses in the biomedical and energy industries. Most of the sources of Phoron within the Romanovich \ Cloud are under control of NanoTrasen, which has consequently established many high-tech research facilities in the area in the past few years." possible_exoplanets = list(/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid, /obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/romanovich) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 954adf29003..b05e692ba5d 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -363,25 +363,25 @@ /obj/item/clothing/suit/storage/toggle/trench/alt name = "brown trenchcoat" - desc = "A sleek canvas trenchcoat" + desc = "A sleek canvas trenchcoat." icon_state = "trenchcoat_brown" item_state = "trenchcoat_brown" /obj/item/clothing/suit/storage/toggle/trench/grey_alt name = "grey trenchcoat" - desc = "A sleek canvas trenchcoat" + desc = "A sleek canvas trenchcoat." icon_state = "trenchcoat_grey" item_state = "trenchcoat_grey" /obj/item/clothing/suit/storage/toggle/trench/green name = "green trenchcoat" - desc = "A sleek canvas trenchcoat" + desc = "A sleek canvas trenchcoat." icon_state = "trenchcoat_green" item_state = "trenchcoat_green" /obj/item/clothing/suit/storage/toggle/trench/colorable name = "trenchcoat" - desc = "A sleek canvas trenchcoat" + desc = "A sleek canvas trenchcoat." icon_state = "trench_colorable" item_state = "trench_colorable" diff --git a/html/changelogs/tag114-punctuation.yml b/html/changelogs/tag114-punctuation.yml new file mode 100644 index 00000000000..6cfc702de37 --- /dev/null +++ b/html/changelogs/tag114-punctuation.yml @@ -0,0 +1,43 @@ +################################ +# 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: Tag114 + +# 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: + - spellcheck: "Added a missing full stop to a description copied across several trench coats." + - spellcheck: "Added a missing full stop to the description of the black and red cardboard box." + - spellcheck: "Added a missing space inbetween words to the description of the Romanovich Cloud sector." \ No newline at end of file