From 7d9fdc06ef9d7f323d54fe9d013b7a6326077fec Mon Sep 17 00:00:00 2001 From: adamsong Date: Wed, 31 Aug 2022 12:05:57 -0400 Subject: [PATCH] Adds round number to unclaimed ticket --- yogstation/code/modules/webhook/webhook.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yogstation/code/modules/webhook/webhook.dm b/yogstation/code/modules/webhook/webhook.dm index b3736ef31100..c1269ad761a3 100644 --- a/yogstation/code/modules/webhook/webhook.dm +++ b/yogstation/code/modules/webhook/webhook.dm @@ -29,7 +29,7 @@ /proc/webhook_send_ticket_unclaimed(var/ckey, var/message, var/id) var/list/query = webhook(ckey, message) - query.Add(list("id" = id)) + query.Add(list("id" = id, "round" = "[GLOB.round_id ? GLOB.round_id : "NULL"]")) webhook_send("ticket_unclaimed", query) /////////////MENTORS/////////////