From 646528790c71d4d198dfdd854fd0d9c70a44ae26 Mon Sep 17 00:00:00 2001 From: Crazylemon Date: Wed, 18 Nov 2015 00:33:35 -0800 Subject: [PATCH] Ore Reclaimer announcements are now timestamped Did that uranium arrive just now, or with the last shipment? Now you know! --- code/modules/mining/equipment_locker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/equipment_locker.dm b/code/modules/mining/equipment_locker.dm index 29e0e9f1102..0043b5369ea 100644 --- a/code/modules/mining/equipment_locker.dm +++ b/code/modules/mining/equipment_locker.dm @@ -67,7 +67,7 @@ stack_list[processed_sheet] = s // Not including tg's ignoring of metal, glass being stocked because if cargo's not telling science when ores are there, they probably won't // help with restocking metal/glass either - var/msg = "[capitalize(s.name)] sheets have been stocked in the ore reclaimer." + var/msg = "\[[worldtime2text()]\]: [capitalize(s.name)] sheets have been stocked in the ore reclaimer." for(var/obj/machinery/requests_console/D in allConsoles) if(D.department in src.supply_consoles) if(supply_consoles[D.department] == null || (s.name in supply_consoles[D.department]))