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)