From 7855dc4f019b4003c6c88bf43ebcf14bc3eeab96 Mon Sep 17 00:00:00 2001 From: Rhials <28870487+Rhials@users.noreply.github.com> Date: Sat, 31 May 2025 08:39:49 -0400 Subject: [PATCH] Punctuation cleaning for diamond statues (#91390) ## About The Pull Request Removes some punctuation at the end of the diamond material statues. ## Why It's Good For The Game It looks weird and is inconsistent with like, everything else in the game. ## Changelog :cl: Rhials spellcheck: Diamond material statue names are no longer punctuated. /:cl: --- code/modules/art/statues.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/art/statues.dm b/code/modules/art/statues.dm index 83b40083a3e..7f467a411b4 100644 --- a/code/modules/art/statues.dm +++ b/code/modules/art/statues.dm @@ -198,15 +198,15 @@ abstract_type = /obj/structure/statue/diamond /obj/structure/statue/diamond/captain - name = "statue of THE captain." + name = "statue of THE captain" icon_state = "cap" /obj/structure/statue/diamond/ai1 - name = "statue of the AI hologram." + name = "statue of the AI hologram" icon_state = "ai1" /obj/structure/statue/diamond/ai2 - name = "statue of the AI core." + name = "statue of the AI core" icon_state = "ai2" ////////////////////////bananium///////////////////////////////////////