From a2d008676228800fa0459dab36e6c08826369319 Mon Sep 17 00:00:00 2001 From: MMMiracles Date: Sat, 12 Dec 2015 19:09:47 -0500 Subject: [PATCH 1/3] consistency is a virtue --- code/modules/awaymissions/corpse.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index a6d4c9eac07..39705e54307 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -317,7 +317,7 @@ /obj/effect/landmark/corpse/skeleton name = "skeletal remains" mobname = "skeleton" - mob_species = "skeleton" + mob_species = /datum/species/skeleton //why doesnt this use the species' id? mobgender = NEUTER @@ -332,7 +332,7 @@ /obj/effect/landmark/corpse/zombie name = "rotting corpse" mobname = "zombie" - mob_species = "zombie" + mob_species = /datum/species/zombie /obj/effect/landmark/corpse/zombie/alive death = FALSE From bf902bbe7cd06479c1271a2c724dcf282ef181e3 Mon Sep 17 00:00:00 2001 From: MMMiracles Date: Sat, 12 Dec 2015 19:15:49 -0500 Subject: [PATCH 2/3] question answered, then. --- code/modules/awaymissions/corpse.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index 39705e54307..82e20eaa287 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -317,7 +317,7 @@ /obj/effect/landmark/corpse/skeleton name = "skeletal remains" mobname = "skeleton" - mob_species = /datum/species/skeleton //why doesnt this use the species' id? + mob_species = /datum/species/skeleton mobgender = NEUTER From 401a947a0872c400e77c6d0d4625c668f6b190e6 Mon Sep 17 00:00:00 2001 From: MMMiracles Date: Sat, 12 Dec 2015 23:54:00 -0500 Subject: [PATCH 3/3] fixes plasmaman corpse spawner, adds a comment about it using the typepath. --- code/modules/awaymissions/corpse.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index 82e20eaa287..ad7447c66a9 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -8,7 +8,7 @@ name = "Unknown" var/mobname = "default" //Use for the ghost spawner variant, so they don't come out named "sleeper" var/mobgender = MALE //Set to male by default due to the patriarchy. Other options include FEMALE and NEUTER - var/mob_species = null //Set to make them a mutant race such as lizard or skeleton + var/mob_species = null //Set to make them a mutant race such as lizard or skeleton. Uses the datum typepath instead of the ID. var/corpseuniform = null //Set this to an object path to have the slot filled with said object on the corpse. var/corpsesuit = null var/corpseshoes = null @@ -259,7 +259,7 @@ /obj/effect/landmark/corpse/plasmaman - mob_species = "plasmaman" + mob_species = /datum/species/plasmaman corpsehelmet = /obj/item/clothing/head/helmet/space/plasmaman corpseuniform = /obj/item/clothing/under/plasmaman corpseback = /obj/item/weapon/tank/internals/plasmaman/full