From 0be3ea429e70262cba6eaff64c627492ac33247f Mon Sep 17 00:00:00 2001 From: sappho Date: Thu, 29 Jun 2023 02:51:56 -0400 Subject: [PATCH] Clarify timer precision --- plugins/include/timers.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/include/timers.inc b/plugins/include/timers.inc index e74d9beb7e..888bcbf69b 100644 --- a/plugins/include/timers.inc +++ b/plugins/include/timers.inc @@ -87,9 +87,10 @@ typeset Timer }; /** - * Creates a basic timer. Calling CloseHandle() on a timer will end the timer. + * Creates a basic timer with 0.1 second accuracy. Calling CloseHandle() on a timer will end the timer. * * @param interval Interval from the current game time to execute the given function. + * Timer intervals are rounded to the nearest tenth of a second. * @param func Function to execute once the given interval has elapsed. * @param data Handle or value to pass through to the timer callback function. * @param flags Flags to set (such as repeatability or auto-Handle closing).