From ba57e31c9a64af89c89d0e986f156efaf4400827 Mon Sep 17 00:00:00 2001 From: LDDestroier Date: Sat, 28 Nov 2020 00:52:55 -0500 Subject: [PATCH] Set default check delay to 0.2 from 0.05 This should make sure that hard drives are slightly less seared --- disknet.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disknet.lua b/disknet.lua index 205861d..c85fea7 100644 --- a/disknet.lua +++ b/disknet.lua @@ -4,7 +4,7 @@ local tArg = {...} disknet.mainPath = "disk/DISKNET" -- path of shared file local limitChannelsToModem = false -- if true, can only use number channels from 1 to 65535 -local checkDelay = 0.05 -- amount of time (seconds) between checking the file -- if 0, checks super fast so don't do that +local checkDelay = 0.2 -- amount of time (seconds) between checking the file -- if 0, checks super fast so don't do that local maximumBufferSize = 64 -- largest amount of messages per channel buffered local isUsingTweaked = false