Update _dbcore.dm (#4558)

This commit is contained in:
silicons
2022-10-16 22:58:36 -07:00
committed by GitHub
parent b56ce1ff91
commit 95b9a3de39
+2 -2
View File
@@ -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)