From 1ed2ea6ec24f60f99c604b254a4198c55398c81d Mon Sep 17 00:00:00 2001 From: Kilakk Date: Sat, 26 Oct 2013 13:35:31 -0400 Subject: [PATCH] Fiddling with cooldown times --- code/WorkInProgress/kilakk/fax.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/WorkInProgress/kilakk/fax.dm b/code/WorkInProgress/kilakk/fax.dm index 81c411a904..76bcc0baa4 100644 --- a/code/WorkInProgress/kilakk/fax.dm +++ b/code/WorkInProgress/kilakk/fax.dm @@ -96,13 +96,15 @@ var/list/alldepartments = list("Central Command") if(dpt == "Central Command") Centcomm_fax(tofax.info, tofax.name, usr) + sendcooldown = 1800 else SendFax(tofax.info, tofax.name, usr, dpt) + sendcooldown = 600 usr << "Message transmitted successfully." - sendcooldown = 1 - spawn(3000) // three minute cooldown. might mess with this number a bit as time goes on + + spawn(sendcooldown) // cooldown time sendcooldown = 0 if(href_list["remove"])