From 36b2aa1faf69b686565babba5fed7ec400b487ae Mon Sep 17 00:00:00 2001 From: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> Date: Mon, 17 Jul 2023 11:48:55 +0200 Subject: [PATCH] Fixes a couple issues with random costume spawners (#21711) * Fix random costume landmark sometimes spawning nothing * Remove random egg from chicken costume landmark --- code/game/objects/effects/landmarks.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index 107cb88bcbe..b7234399fe5 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -430,7 +430,6 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark/awaystart) //Without this away mission . = ..() new /obj/item/clothing/suit/chickensuit(src.loc) new /obj/item/clothing/head/chicken(src.loc) - new /obj/item/reagent_containers/food/snacks/egg(src.loc) return INITIALIZE_HINT_QDEL /obj/effect/landmark/costume/gladiator/Initialize(mapload) @@ -550,7 +549,7 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark/awaystart) //Without this away mission new /obj/item/clothing/suit/holidaypriest(src.loc) return INITIALIZE_HINT_QDEL -/obj/effect/landmark/costume/marisawizard/fake/Initialize(mapload) +/obj/effect/landmark/costume/marisa_fakewizard/Initialize(mapload) . = ..() new /obj/item/clothing/head/wizard/marisa/fake(src.loc) new/obj/item/clothing/suit/wizrobe/marisa/fake(src.loc)