From 0c75d845e316f3b969c79cd3894a3217b66b3f45 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Wed, 25 Nov 2015 08:58:23 +0000 Subject: [PATCH] Make the first delay one second instead of 500ms. This may fix up an odd 4-second inter-line delay that I noticed in the last few commits. I don't really know if that's new or not though. --- exec/ircmsg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/ircmsg.js b/exec/ircmsg.js index b51e18df2a..5fe95dbba2 100644 --- a/exec/ircmsg.js +++ b/exec/ircmsg.js @@ -100,7 +100,7 @@ else while((msg=readln())!=undefined) { /* read from stdin */ if(delay < 2000) delay*=2; if (delay == 0) - delay = 500; + delay = 1000; } } -- GitLab