From c456bdefdc4edcf1c2ee9762562f55018024626b Mon Sep 17 00:00:00 2001 From: ElorgRHG <71735193+ElorgRHG@users.noreply.github.com> Date: Fri, 28 Oct 2022 20:20:01 +0200 Subject: [PATCH] [GBP NO UPDATE] Fixes the basetype of .../under/suit spawning (#19471) * Fixes the basetype of .../under/suit spawning * Suggestion * The other way around --- code/game/objects/effects/landmarks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index 623ec4ce9f2..a2325be1c21 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -463,7 +463,7 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark/awaystart) //Without this away mission /obj/effect/landmark/costume/butler/Initialize(mapload) . = ..() new /obj/item/clothing/suit/wcoat(src.loc) - new /obj/item/clothing/under/suit(src.loc) + new /obj/item/clothing/under/suit/black(loc) new /obj/item/clothing/head/that(src.loc) return INITIALIZE_HINT_QDEL