From 1a137917ca6761154987b61cd4dd2395d72a370a Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Sat, 14 Sep 2024 06:30:44 +0100 Subject: [PATCH] Fixes shiva panic room insert presets (#7152) # About the pull request Survivor doctors and scientists for the shiva snowball panic room nightmare insert now spawn with the correct presets. # Explain why it's good for the game Bad for snow map survivors to have no snow gear. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: Scientists and Doctors from the Shiva panic room nightmare insert now spawn with snow gear as intended. /:cl: --- code/game/objects/effects/landmarks/survivor_spawner.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm index d9cd1906233e..ce83712aee7b 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -169,7 +169,7 @@ spawn_priority = SPAWN_PRIORITY_VERY_HIGH /obj/effect/landmark/survivor_spawner/shivas_panic_room_doc - equipment = /datum/equipment_preset/survivor/doctor + equipment = /datum/equipment_preset/survivor/doctor/shiva synth_equipment = /datum/equipment_preset/synth/survivor/emt_synth intro_text = list("

You are a Medical Doctor on the Colony!

",\ "You are aware of the xenomorph threat.",\ @@ -179,7 +179,7 @@ spawn_priority = SPAWN_PRIORITY_HIGH /obj/effect/landmark/survivor_spawner/shivas_panic_room_sci - equipment = /datum/equipment_preset/survivor/scientist + equipment = /datum/equipment_preset/survivor/scientist/shiva synth_equipment = /datum/equipment_preset/synth/survivor/scientist_synth intro_text = list("

You are a Weyland-Yutani Scientist on the Colony!

",\ "You are aware of the xenomorph threat.",\