From e2749d7f3ad35dd47ed7805d7582bf0338d0fc96 Mon Sep 17 00:00:00 2001 From: distributivgesetz Date: Sun, 9 Jul 2023 20:42:29 +0200 Subject: [PATCH] Remove underscore in spiderling names (#76655) ## About The Pull Request Title. ## Why It's Good For The Game Accidental coder speak. ## Changelog :cl: distributivgesetz spellcheck: Fixed some underscores in spiderling names. /:cl: --- .../space_fauna/spider/spiderlings/spiderling_subtypes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/basic/space_fauna/spider/spiderlings/spiderling_subtypes.dm b/code/modules/mob/living/basic/space_fauna/spider/spiderlings/spiderling_subtypes.dm index 233d2240a8f..0b5cf8b9235 100644 --- a/code/modules/mob/living/basic/space_fauna/spider/spiderlings/spiderling_subtypes.dm +++ b/code/modules/mob/living/basic/space_fauna/spider/spiderlings/spiderling_subtypes.dm @@ -58,7 +58,7 @@ /// Will differentiate into the "viper" giant spider. /mob/living/basic/spiderling/viper grow_as = /mob/living/basic/giant_spider/viper - name = "viper_spiderling" + name = "viper spiderling" desc = "Furry and black, it looks defenseless. This one has sparkling purple eyes." icon_state = "viper_spiderling" icon_dead = "viper_spiderling_dead" @@ -67,7 +67,7 @@ /// Will differentiate into the "tarantula" giant spider. /mob/living/basic/spiderling/tarantula grow_as = /mob/living/basic/giant_spider/tarantula - name = "tarantula_spiderling" + name = "tarantula spiderling" desc = "Furry and black, it looks defenseless. This one has abyssal red eyes." icon_state = "tarantula_spiderling" icon_dead = "tarantula_spiderling_dead"