From 1cc99e0b607cde8df4907ca90b0849a995cd006f Mon Sep 17 00:00:00 2001 From: Erikos66 <155964994+Erikos66@users.noreply.github.com> Date: Sun, 22 Sep 2024 23:59:22 +0100 Subject: [PATCH] Makes nest ghosting clearer (#26735) * Update alien_nests.dm * woopsies * spacing fix * Clarifies text (Thanks Contra) Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: Erikos66 * More spacing (Thanks Lewc) Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Erikos66 <155964994+Erikos66@users.noreply.github.com> --------- Signed-off-by: Erikos66 Signed-off-by: Erikos66 <155964994+Erikos66@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --- .../objects/structures/stool_bed_chair_nest/alien_nests.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/stool_bed_chair_nest/alien_nests.dm b/code/game/objects/structures/stool_bed_chair_nest/alien_nests.dm index c66fd4871a4c..ab6b352db2c6 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/alien_nests.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/alien_nests.dm @@ -79,7 +79,10 @@ if(user && !isalien(user)) return buckled_mob.throw_alert("ghost_nest", /atom/movable/screen/alert/ghost) - to_chat(buckled_mob, "You may now ghost, you keep respawnability in this state. You will be alerted when you're removed from the nest.") + to_chat(buckled_mob, "You may now click on the ghost prompt on your screen to leave your body. You will be alerted when you're removed from the nest.") + if(tgui_alert(buckled_mob, "You may now ghost and keep respawnability, you will be notified if you leave the nest, would you like to do so?", "Ghosting", list("Yes", "No")) != "Yes") + return + buckled_mob.ghostize(TRUE) /obj/structure/bed/nest/post_buckle_mob(mob/living/M) M.pixel_y = 0