From fbb1375450bb616ed4354a38fbf78f6c64964a5c Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Thu, 20 Jul 2023 09:24:09 +0100 Subject: [PATCH] Fixes PMC Survivor Synth AGAIN (#3938) # About the pull request Again removes marine comms from PMC survivor synth. Please stop sneaking marine comms into survivors. # Explain why it's good for the game -_- # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: Fixes PMC survivor synth spawning with marine comms, again. /: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 bc24cb0d9d1f..b7a2e11fb0aa 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -80,7 +80,7 @@ /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic equipment = /datum/equipment_preset/survivor/pmc/medic - synth_equipment = /datum/equipment_preset/pmc/synth + synth_equipment = /datum/equipment_preset/synth/survivor/pmc intro_text = list("

You are a survivor of a crash landing!

",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") @@ -93,7 +93,7 @@ /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer equipment = /datum/equipment_preset/survivor/pmc/engineer - synth_equipment = /datum/equipment_preset/pmc/synth + synth_equipment = /datum/equipment_preset/synth/survivor/pmc intro_text = list("

You are a survivor of a crash landing!

",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.")