From cd729ad780b2df7e2dabbcd0dcdd4b1fefaf7afc Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Wed, 29 Jan 2025 11:08:08 +0100 Subject: [PATCH] another missing qdel (#16989) --- code/modules/library/lib_machines.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index 0dfc2f4f9a..1dcdbae571 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -502,6 +502,7 @@ var/datum/db_query/query = SSdbcore.NewQuery("DELETE FROM library WHERE id=[sqlid]") query.Execute() log_admin("[usr.key] has deleted the book [sqlid]") //VOREStation Addition + qdel(query) if(href_list["orderbyid"]) var/orderid = tgui_input_number(usr, "Enter your order:")