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>
This commit is contained in:
GDN
2024-03-02 09:34:24 -06:00
committed by GitHub
parent 8844a2ab97
commit 3102e151bf
@@ -13,7 +13,7 @@
if(cling.headslugged)
to_chat(user, "<span class='notice'>We need to absorb a humanoid to headslug again.</span>")
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
..()