From 2b4b047318e5e50499a8ca4b6324e6b73a0aff6d Mon Sep 17 00:00:00 2001 From: Alberyk Date: Fri, 3 Jul 2020 01:27:17 -0300 Subject: [PATCH] sleepy fix (#9266) What it says in the title. --- code/modules/client/preferences_spawnpoints.dm | 3 +-- html/changelogs/alberyk-sleepyfix.yml | 6 ++++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/alberyk-sleepyfix.yml diff --git a/code/modules/client/preferences_spawnpoints.dm b/code/modules/client/preferences_spawnpoints.dm index 3bb096d31b5..500adc5356b 100644 --- a/code/modules/client/preferences_spawnpoints.dm +++ b/code/modules/client/preferences_spawnpoints.dm @@ -43,8 +43,7 @@ for(var/obj/machinery/cryopod/C in A) if(!C.occupant) C.set_occupant(victim, 1) - victim.Sleeping(3) - to_chat(victim,SPAN_NOTICE("You are slowly waking up from the cryostasis aboard [current_map.full_name]. It might take a few seconds.")) + to_chat(victim,SPAN_NOTICE("You are slowly waking up from the cryostasis aboard [current_map.full_name].")) return /datum/spawnpoint/cyborg diff --git a/html/changelogs/alberyk-sleepyfix.yml b/html/changelogs/alberyk-sleepyfix.yml new file mode 100644 index 00000000000..f363f84d47e --- /dev/null +++ b/html/changelogs/alberyk-sleepyfix.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - bugfix: "Fixed joining via cryo disconnecting people."