From e3112b6421f98ea44de1c1d478a9099ea0cf142b Mon Sep 17 00:00:00 2001 From: Lucy Date: Fri, 28 Jun 2024 00:03:18 -0400 Subject: [PATCH] Add trailing commas --- code/modules/mob/living/carbon/human/species_types/android.dm | 4 ++-- .../mob/living/carbon/human/species_types/jellypeople.dm | 4 ++-- .../mob/living/carbon/human/species_types/skeletons.dm | 2 +- code/modules/mob/living/carbon/human/species_types/zombies.dm | 2 +- .../modules/mob/living/carbon/human/species_type/skeletons.dm | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/android.dm b/code/modules/mob/living/carbon/human/species_types/android.dm index f5c045f32ffda2..73e1d03c6d77e1 100644 --- a/code/modules/mob/living/carbon/human/species_types/android.dm +++ b/code/modules/mob/living/carbon/human/species_types/android.dm @@ -6,7 +6,7 @@ NOTRANSSTING, NO_UNDERWEAR, NOHUSK, - HAIR // monke edit: allow them to have hair (it's the future, why not) + HAIR, // monke edit: allow them to have hair (it's the future, why not) ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, @@ -26,7 +26,7 @@ TRAIT_TOXIMMUNE, TRAIT_NOBLOOD, TRAIT_VIRUSIMMUNE, - TRAIT_REVIVES_BY_HEALING // monkestation edit: making androids closer to IPCs + TRAIT_REVIVES_BY_HEALING, // monkestation edit: making androids closer to IPCs ) inherent_biotypes = MOB_ROBOTIC|MOB_HUMANOID diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index a77f80f04ef682..7093b8f8b7cbeb 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -13,14 +13,14 @@ species_traits = list( MUTCOLORS, EYECOLOR, - HAIR // monke edit: allow them to have hair (it's the future, why not) + HAIR, // monke edit: allow them to have hair (it's the future, why not) ) hair_color = "mutcolor" hair_alpha = 150 inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, TRAIT_TOXINLOVER, - TRAIT_NOBLOOD + TRAIT_NOBLOOD, ) mutanttongue = /obj/item/organ/internal/tongue/jelly mutantlungs = /obj/item/organ/internal/lungs/slime diff --git a/code/modules/mob/living/carbon/human/species_types/skeletons.dm b/code/modules/mob/living/carbon/human/species_types/skeletons.dm index caa15de01bb113..400438fc879014 100644 --- a/code/modules/mob/living/carbon/human/species_types/skeletons.dm +++ b/code/modules/mob/living/carbon/human/species_types/skeletons.dm @@ -10,7 +10,7 @@ NO_DNA_COPY, NO_UNDERWEAR, NOHUSK, - HAIR // monke edit: allow them to have hair (it's the future, why not) + HAIR, // monke edit: allow them to have hair (it's the future, why not) ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION, diff --git a/code/modules/mob/living/carbon/human/species_types/zombies.dm b/code/modules/mob/living/carbon/human/species_types/zombies.dm index 582bb5c3ffdadf..c420d355e009b3 100644 --- a/code/modules/mob/living/carbon/human/species_types/zombies.dm +++ b/code/modules/mob/living/carbon/human/species_types/zombies.dm @@ -10,7 +10,7 @@ species_traits = list( NOZOMBIE, NOTRANSSTING, - HAIR // monke edit: allow them to have hair (it's the future, why not) + HAIR, // monke edit: allow them to have hair (it's the future, why not) ) inherent_traits = list( // SHARED WITH ALL ZOMBIES diff --git a/monkestation/code/modules/mob/living/carbon/human/species_type/skeletons.dm b/monkestation/code/modules/mob/living/carbon/human/species_type/skeletons.dm index 35ab198aa057cd..bd27a5997bc45a 100644 --- a/monkestation/code/modules/mob/living/carbon/human/species_type/skeletons.dm +++ b/monkestation/code/modules/mob/living/carbon/human/species_type/skeletons.dm @@ -16,7 +16,7 @@ NO_DNA_COPY, NO_UNDERWEAR, NOHUSK, - HAIR + HAIR, ) inherent_traits = list( TRAIT_CAN_USE_FLIGHT_POTION,