From 997bab506cd5b85da2fbab27f8c0c3beda887668 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 23 Sep 2007 19:35:22 +0000 Subject: [PATCH] renamed IsServerTicking() to IsServerProcessing() --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401467 --- core/smn_timers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/smn_timers.cpp b/core/smn_timers.cpp index 3797546c..0ea57eb5 100644 --- a/core/smn_timers.cpp +++ b/core/smn_timers.cpp @@ -310,7 +310,7 @@ static cell_t smn_ExtendMapTimeLimit(IPluginContext *pContext, const cell_t *par return 1; } -static cell_t smn_IsServerTicking(IPluginContext *pContext, const cell_t *params) +static cell_t smn_IsServerProcessing(IPluginContext *pContext, const cell_t *params) { return (gpGlobals->frametime > 0.0f) ? 1 : 0; } @@ -324,6 +324,6 @@ REGISTER_NATIVES(timernatives) {"GetMapTimeLeft", smn_GetMapTimeLeft}, {"GetMapTimeLimit", smn_GetMapTimeLimit}, {"ExtendMapTimeLimit", smn_ExtendMapTimeLimit}, - {"IsServerTicking", smn_IsServerTicking}, + {"IsServerProcessing", smn_IsServerProcessing}, {NULL, NULL} };