From c526124b9fc42b623fb37681320cc6dc305c4d23 Mon Sep 17 00:00:00 2001 From: dearmochi Date: Mon, 23 Nov 2020 15:24:20 +0100 Subject: [PATCH] Fix cloning message having unintended linebreaks (#14974) --- code/game/machinery/cloning.dm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 98edf130d94..7e08c25cc42 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -299,13 +299,12 @@ GLOBAL_LIST_INIT(cloner_biomass_items, list(\ clonemind.transfer_to(H) H.ckey = R.ckey update_clone_antag(H) //Since the body's got the mind, update their antag stuff right now. Otherwise, wait until they get kicked out (as per the CLONER_MATURE_CLONE business) to do it. - to_chat(H, {"Consciousness slowly creeps over you - as your body regenerates.
So this is what cloning - feels like?
"}) + var/message + message += "Consciousness slowly creeps over you as your body regenerates.
" + message += "So this is what cloning feels like?" + to_chat(H, "[message]") else if(grab_ghost_when == CLONER_MATURE_CLONE) - to_chat(clonemind.current, {"Your body is - beginning to regenerate in a cloning pod. You will - become conscious when it is complete."}) + to_chat(clonemind.current, "Your body is beginning to regenerate in a cloning pod. You will become conscious when it is complete.") // Set up a soul link with the dead body to catch a revival soullink(/datum/soullink/soulhook, clonemind.current, src) @@ -533,9 +532,10 @@ GLOBAL_LIST_INIT(cloner_biomass_items, list(\ if(occupant.mind != clonemind) clonemind.transfer_to(occupant) occupant.grab_ghost() // We really just want to make you suffer. - to_chat(occupant, {"Agony blazes across your - consciousness as your body is torn apart.
- Is this what dying is like? Yes it is.
"}) + var/message + message += "Agony blazes across your consciousness as your body is torn apart.
" + message += "Is this what dying is like? Yes it is." + to_chat(occupant, "[message]") occupant << sound('sound/hallucinations/veryfar_noise.ogg',0,1,50) for(var/i in missing_organs) qdel(i)