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)