From 8710f08b5dd30bd7229f03c2749d7e97207f2d59 Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Thu, 20 Nov 2025 20:56:22 +0100 Subject: [PATCH] Fixes some admin verbs (#31064) --- code/modules/admin/admin_verbs.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index c70ee114b9f..2c58b5a5431 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -1022,7 +1022,7 @@ GLOBAL_LIST_INIT(view_logs_verbs, list( if(!check_rights(R_ADMIN)) return - if(tgui_alert("Are you sure you want to send the global message?", "Confirm Man Up Global", list("Yes", "No")) != "No") + if(tgui_alert(usr, "Are you sure you want to send the global message?", "Confirm Man Up Global", list("Yes", "No")) == "Yes") var/manned_up_sound = sound('sound/voice/manup1.ogg') for(var/sissy in GLOB.player_list) to_chat(sissy, chat_box_notice_thick("Man up.
Deal with it.

Move on.
")) @@ -1155,7 +1155,7 @@ GLOBAL_LIST_INIT(view_logs_verbs, list( return var/display_turfs_overlay = FALSE - if(tgui_alert(usr, "Would you like to have all interesting turfs have a client side overlay applied as well?", "Optional", list("Yes", "No")) != "No") + if(tgui_alert(usr, "Would you like to have all interesting turfs have a client side overlay applied as well?", "Optional", list("Yes", "No")) == "Yes") display_turfs_overlay = TRUE message_admins("[key_name_admin(usr)] is visualizing interesting atmos turfs. Server may lag.") @@ -1234,7 +1234,7 @@ GLOBAL_LIST_INIT(view_logs_verbs, list( return var/datum/rnd_backup/B = SSresearch.backups[actual_target] - if(tgui_alert("Are you sure you want to restore this RnD backup? The disk will spawn below your character.", "Are you sure?", list("Yes", "No")) != "Yes") + if(tgui_alert(usr, "Are you sure you want to restore this RnD backup? The disk will spawn below your character.", "Are you sure?", list("Yes", "No")) != "Yes") return B.to_backup_disk(get_turf(usr))