diff --git a/code/modules/mob/living/carbon/human/species/outsider/revenant.dm b/code/modules/mob/living/carbon/human/species/outsider/revenant.dm index fc49f81d17f..1bd709cc572 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/revenant.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/revenant.dm @@ -67,9 +67,9 @@ ) has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head/unbreakable/revenant), BP_CHEST = list("path" = /obj/item/organ/external/chest), BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head/unbreakable/revenant), BP_L_ARM = list("path" = /obj/item/organ/external/arm), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), BP_L_LEG = list("path" = /obj/item/organ/external/leg), diff --git a/code/modules/mob/living/carbon/human/species/outsider/undead.dm b/code/modules/mob/living/carbon/human/species/outsider/undead.dm index d8fd684b838..8b3b9fed753 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/undead.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/undead.dm @@ -181,9 +181,9 @@ BP_STOMACH = /obj/item/organ/internal/stomach ) has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head/zombie), BP_CHEST = list("path" = /obj/item/organ/external/chest/zombie), BP_GROIN = list("path" = /obj/item/organ/external/groin/zombie), + BP_HEAD = list("path" = /obj/item/organ/external/head/zombie), BP_L_ARM = list("path" = /obj/item/organ/external/arm/zombie), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/zombie), BP_L_LEG = list("path" = /obj/item/organ/external/leg/zombie), diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index fba76d032c2..49847e35fb3 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -253,9 +253,9 @@ var/breathing_organ // If set, this organ is required to breathe. Defaults to BP_LUNGS if the species has them. var/list/has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head), BP_CHEST = list("path" = /obj/item/organ/external/chest), BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head), BP_L_ARM = list("path" = /obj/item/organ/external/arm), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), BP_L_LEG = list("path" = /obj/item/organ/external/leg), @@ -871,4 +871,4 @@ return TRUE /datum/species/proc/get_species_record_sex(var/mob/living/carbon/human/H) - return H.gender \ No newline at end of file + return H.gender diff --git a/code/modules/mob/living/carbon/human/species/station/diona/diona.dm b/code/modules/mob/living/carbon/human/species/station/diona/diona.dm index cc067e84209..fe535d5424e 100644 --- a/code/modules/mob/living/carbon/human/species/station/diona/diona.dm +++ b/code/modules/mob/living/carbon/human/species/station/diona/diona.dm @@ -71,9 +71,9 @@ has_organ = list(BP_STOMACH = /obj/item/organ/internal/stomach/diona) has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head/diona), BP_CHEST = list("path" = /obj/item/organ/external/chest/diona), BP_GROIN = list("path" = /obj/item/organ/external/groin/diona), + BP_HEAD = list("path" = /obj/item/organ/external/head/diona), BP_L_ARM = list("path" = /obj/item/organ/external/arm/diona), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/diona), BP_L_LEG = list("path" = /obj/item/organ/external/leg/diona), diff --git a/code/modules/mob/living/carbon/human/species/station/golem.dm b/code/modules/mob/living/carbon/human/species/station/golem.dm index 0d9bc15ad7e..0523da6f417 100644 --- a/code/modules/mob/living/carbon/human/species/station/golem.dm +++ b/code/modules/mob/living/carbon/human/species/station/golem.dm @@ -69,9 +69,9 @@ var/global/list/golem_types = list( ) has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head/unbreakable), BP_CHEST = list("path" = /obj/item/organ/external/chest/unbreakable), BP_GROIN = list("path" = /obj/item/organ/external/groin/unbreakable), + BP_HEAD = list("path" = /obj/item/organ/external/head/unbreakable), BP_L_ARM = list("path" = /obj/item/organ/external/arm/unbreakable), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/unbreakable), BP_L_LEG = list("path" = /obj/item/organ/external/leg/unbreakable), diff --git a/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm b/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm index 407591e86bf..5025c643c74 100644 --- a/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm +++ b/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm @@ -97,9 +97,9 @@ vision_organ = BP_EYES has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head/ipc), BP_CHEST = list("path" = /obj/item/organ/external/chest/ipc), BP_GROIN = list("path" = /obj/item/organ/external/groin/ipc), + BP_HEAD = list("path" = /obj/item/organ/external/head/ipc), BP_L_ARM = list("path" = /obj/item/organ/external/arm/ipc), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/ipc), BP_L_LEG = list("path" = /obj/item/organ/external/leg/ipc), diff --git a/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm b/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm index a777fe81ad1..e178513f53e 100644 --- a/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm +++ b/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm @@ -46,9 +46,9 @@ possible_external_organs_modifications = list("Normal","Amputated","Prosthesis", "Diona Nymph") has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head/skrell), BP_CHEST = list("path" = /obj/item/organ/external/chest), BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head/skrell), BP_L_ARM = list("path" = /obj/item/organ/external/arm), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), BP_L_LEG = list("path" = /obj/item/organ/external/leg), diff --git a/code/modules/mob/living/carbon/human/species/station/slime.dm b/code/modules/mob/living/carbon/human/species/station/slime.dm index d9c9cceaced..7546bf76f29 100644 --- a/code/modules/mob/living/carbon/human/species/station/slime.dm +++ b/code/modules/mob/living/carbon/human/species/station/slime.dm @@ -38,9 +38,9 @@ push_flags = MONKEY|SLIME|SIMPLE_ANIMAL has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head/unbreakable), BP_CHEST = list("path" = /obj/item/organ/external/chest/unbreakable), BP_GROIN = list("path" = /obj/item/organ/external/groin/unbreakable), + BP_HEAD = list("path" = /obj/item/organ/external/head/unbreakable), BP_L_ARM = list("path" = /obj/item/organ/external/arm/unbreakable), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/unbreakable), BP_L_LEG = list("path" = /obj/item/organ/external/leg/unbreakable), diff --git a/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm b/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm index bd79f6b1b96..29396cec7f4 100644 --- a/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm +++ b/code/modules/mob/living/carbon/human/species/station/tajara/tajaran_subspecies.dm @@ -172,9 +172,9 @@ ) has_limbs = list( - BP_HEAD = list("path" = /obj/item/organ/external/head), BP_CHEST = list("path" = /obj/item/organ/external/chest/tesla_body), BP_GROIN = list("path" = /obj/item/organ/external/groin/tesla_body), + BP_HEAD = list("path" = /obj/item/organ/external/head), BP_L_ARM = list("path" = /obj/item/organ/external/arm/tesla_body), BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/tesla_body), BP_L_LEG = list("path" = /obj/item/organ/external/leg/tesla_body), diff --git a/html/changelogs/geeves-bodymarkings_fix.yml b/html/changelogs/geeves-bodymarkings_fix.yml new file mode 100644 index 00000000000..f2b80e2c5d2 --- /dev/null +++ b/html/changelogs/geeves-bodymarkings_fix.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Fixed the layering for heads and bodymarkings."