From 9ec970668d83c777fe436371c5889704acb0d1fb Mon Sep 17 00:00:00 2001 From: elgeonmb Date: Fri, 1 Feb 2019 16:06:11 -0800 Subject: [PATCH] reduces delay in printing from librarian computer this code is awful and going to be superceded soon :tm: but, well, you know. In the meantime I'd like to be able to compile a collection in a reasonable span of time. alternate title: buffs librarians, allowing new speedrun strats --- code/modules/library/lib_machines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index 442e8e42fe..716b85f2f1 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -367,7 +367,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f V.show_message("[src]'s monitor flashes, \"Printer unavailable. Please allow a short time before attempting to print.\"") else bibledelay = 1 - spawn(60) + spawn(6) bibledelay = 0 var/DBQuery/query = dbcon_old.NewQuery("SELECT * FROM library WHERE id=[sqlid]") query.Execute()