From f74e357e916dd93e923fcb31798b8cc3f7ec9aac Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 6 Mar 2015 01:52:32 -0800 Subject: [PATCH] Merge pull request #288 from klausenbusk/patch-1 Updated KillTimer documentation to reflect "Invalid handles" = runtime error. --- plugins/include/timers.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/include/timers.inc b/plugins/include/timers.inc index ba3f028f..f6b7f95c 100644 --- a/plugins/include/timers.inc +++ b/plugins/include/timers.inc @@ -96,6 +96,7 @@ native Handle:CreateTimer(Float:interval, Timer:func, any:data=INVALID_HANDLE, f * @param autoClose If autoClose is true, the data that was passed to CreateTimer() will * be closed as a handle if TIMER_DATA_HNDL_CLOSE was not specified. * @noreturn + * @error Invalid handles will cause a run time error. */ native KillTimer(Handle:timer, bool:autoClose=false);