From 3102e151bfc428dcc86f9faf1dcbad23e3339dff Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Sat, 2 Mar 2024 09:34:24 -0600 Subject: [PATCH] makes last resort work (#24387) * makes last resort work * Update code/modules/antagonists/changeling/powers/become_headslug.dm --------- Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com> --- code/modules/antagonists/changeling/powers/become_headslug.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/changeling/powers/become_headslug.dm b/code/modules/antagonists/changeling/powers/become_headslug.dm index a5c7b712ffc..06301121e98 100644 --- a/code/modules/antagonists/changeling/powers/become_headslug.dm +++ b/code/modules/antagonists/changeling/powers/become_headslug.dm @@ -13,7 +13,7 @@ if(cling.headslugged) to_chat(user, "We need to absorb a humanoid to headslug again.") return - if(tgui_alert("Are you sure you wish to do this? This action cannot be undone.",,"Yes","No") != "Yes") + if(tgui_alert(user, "Are you sure you wish to do this? This action cannot be undone.", "Sting", list("Yes", "No")) != "Yes") return cling.headslugged = TRUE ..()