From c32483258576847c496bc663df08deae7e2e5bdf Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sun, 17 Nov 2019 13:34:22 -0300 Subject: [PATCH] Removes bluespace echo creation from teleportation. (#7239) What it says in the title. Due to the latest telescience changes, this is not needed anymore. Also, there is no way to echoes inside bodies anymore. --- code/datums/helper_datums/teleport.dm | 24 ------------------------ html/changelogs/alberyk_echo.yml | 5 +++++ 2 files changed, 5 insertions(+), 24 deletions(-) create mode 100644 html/changelogs/alberyk_echo.yml diff --git a/code/datums/helper_datums/teleport.dm b/code/datums/helper_datums/teleport.dm index 70a073a6566..f27e752815e 100644 --- a/code/datums/helper_datums/teleport.dm +++ b/code/datums/helper_datums/teleport.dm @@ -229,30 +229,6 @@ to_chat(L, "You partially phase into \the [impediment], causing a chunk of you to violently dematerialize!") L.adjustBruteLoss(40) - if(!newdest && L.mind) - var/mob/living/simple_animal/shade/bluespace/BS = new /mob/living/simple_animal/shade/bluespace(destturf) - to_chat(L, "You feel your spirit violently rip from your body in a flurry of violent extradimensional disarray!") - L.mind.transfer_to(BS) - to_chat(BS, "You are now a bluespace echo - consciousness imprinted upon wavelengths of bluespace energy. You currently retain no memories of your previous life, but do express a strong desire to return to corporeality. You will die soon, fading away forever. Good luck!") - BS.original_body = L - - var/list/turfs_to_teleport = list() - for(var/turf/T in orange(20, get_turf(BS))) - turfs_to_teleport += T - do_teleport(BS, pick(turfs_to_teleport)) - - for(var/mob/living/M in L) - if(M.mind) - var/mob/living/simple_animal/shade/bluespace/more_BS = new /mob/living/simple_animal/shade/bluespace(get_turf(M)) - to_chat(M, "You feel your spirit violently rip from your body in a flurry of violent extradimensional disarray!") - M.mind.transfer_to(more_BS) - to_chat(more_BS, "You are now a bluespace echo - consciousness imprinted upon wavelengths of bluespace energy. You currently retain no memories of your previous life, but do express a strong desire to return to corporeality. You will die soon, fading away forever. Good luck!") - more_BS.original_body = M - - for(var/turf/T in orange(20, get_turf(BS))) - turfs_to_teleport += T - do_teleport(more_BS, pick(turfs_to_teleport)) - else newdest = destturf valid = 0 diff --git a/html/changelogs/alberyk_echo.yml b/html/changelogs/alberyk_echo.yml new file mode 100644 index 00000000000..d2422f470a6 --- /dev/null +++ b/html/changelogs/alberyk_echo.yml @@ -0,0 +1,5 @@ +author: Alberyk + +delete-after: True +changes: + - rscdel: "Telescience accidents can not create bluespace echos anymore."