From 95b9a3de39fa436ce5cfec8dd4ddf2d679a212f9 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 16 Oct 2022 22:58:36 -0700 Subject: [PATCH] Update _dbcore.dm (#4558) --- code/controllers/subsystem/dbcore/_dbcore.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/dbcore/_dbcore.dm b/code/controllers/subsystem/dbcore/_dbcore.dm index 3abfc87bbe0..fcff3ba34c4 100644 --- a/code/controllers/subsystem/dbcore/_dbcore.dm +++ b/code/controllers/subsystem/dbcore/_dbcore.dm @@ -43,8 +43,8 @@ SUBSYSTEM_DEF(dbcore) //This is as close as we can get to the true round end before Disconnect() without changing where it's called, defeating the reason this is a subsystem if(SSdbcore.Connect()) var/datum/db_query/query_round_shutdown = SSdbcore.NewQuery( - "UPDATE [format_table_name("round")] SET shutdown_datetime = Now(), end_state = :end_state WHERE id = :round_id", - list("end_state" = "Unknown", "round_id" = GLOB.round_id) + "UPDATE [format_table_name("round")] SET shutdown_datetime = Now() WHERE id = :round_id", + list("round_id" = GLOB.round_id) ) query_round_shutdown.Execute() qdel(query_round_shutdown)