From ac246dbdef44821b8d888375138a2d8a52edfb3c Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 21 May 2017 02:23:15 -0700 Subject: [PATCH] Increase timer resolution from 10 seconds to 1 second --- PBot/Timer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/Timer.pm b/PBot/Timer.pm index 35bf91b1..91f0d303 100644 --- a/PBot/Timer.pm +++ b/PBot/Timer.pm @@ -16,7 +16,7 @@ use strict; use Carp (); -our $min_timeout = 10; +our $min_timeout = 1; our $max_seconds = 1000000; our $seconds = 0; our @timer_funcs;