From 96e617b4b92f51c8d7943ee5881eed95de834e95 Mon Sep 17 00:00:00 2001 From: Toastical <20125180+Toastical@users.noreply.github.com> Date: Tue, 9 Dec 2025 01:55:38 +0200 Subject: [PATCH] add missing usr argument to tgui window in VV delete all (#31200) --- code/game/objects/obj_vv.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/obj_vv.dm b/code/game/objects/obj_vv.dm index af294ac17dd..9268c4486ca 100644 --- a/code/game/objects/obj_vv.dm +++ b/code/game/objects/obj_vv.dm @@ -26,7 +26,7 @@ if(tgui_alert(usr, "Are you really sure you want to delete all objects of type [type]?", "Confirm", list("Yes", "No")) != "Yes") return - if(tgui_alert("Second confirmation required. Delete?", "Confirm", list("Yes", "No")) != "Yes") + if(tgui_alert(usr, "Second confirmation required. Delete?", "Confirm", list("Yes", "No")) != "Yes") return var/O_type = type