From 114501d2cb172d979c5ea3039cb2933904edaeb3 Mon Sep 17 00:00:00 2001 From: Spoike Date: Fri, 24 Sep 2004 02:45:41 +0000 Subject: [PATCH] Plugin stuff. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@242 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_main.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/engine/client/cl_main.c b/engine/client/cl_main.c index f35e9bf13..f1d804ee8 100644 --- a/engine/client/cl_main.c +++ b/engine/client/cl_main.c @@ -1923,6 +1923,8 @@ void CL_FTP_f(void) { FTP_Client_Command(Cmd_Args()); } +#endif +#ifdef IRCCLIENT void CL_IRC_f(void) { IRC_Command(Cmd_Args()); @@ -2347,6 +2349,8 @@ void Host_Frame (float time) POP3_Think(); #endif + Plug_Tick(); + // decide the simulation time realtime += time; if (oldrealtime > realtime) @@ -2657,6 +2661,8 @@ Con_TPrintf (TL_NL); "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. " "\n" "See the GNU General Public License for more details.\n"); + + Plug_Init(); }