refactor(Quit round): Changes message to be more clear

Previously, the message implied that saying no/cancelling acts as a double-check for leaving the round. Now, it's clear that pressing No will still kick you out.
This commit is contained in:
Runa Dacino
2023-09-03 22:31:30 +02:00
parent 740f23bf0e
commit 2b955ceff4
+3 -1
View File
@@ -366,7 +366,9 @@
if(choice == "No, wait")
return
else if(mind.assigned_role)
var/extra_check = tgui_alert(usr, "Do you want to Quit This Round before you return to lobby? This will properly remove you from manifest, as well as prevent resleeving.","Quit This Round",list("Quit Round","Cancel"))
var/extra_check = tgui_alert(usr, "Do you want to Quit This Round before you return to lobby?\
This will properly remove you from manifest, as well as prevent resleeving. BEWARE: Pressing 'NO' will STILL return you to lobby!",
"Quit This Round",list("Quit Round","No"))
if(extra_check == "Quit Round")
//Update any existing objectives involving this mob.
for(var/datum/objective/O in all_objectives)