From 7fef5aad34efefcb67ed2de8be755437ffd19a60 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 18 Mar 2004 01:32:39 +0000 Subject: [PATCH] Includes were broken - it is fixed. --- plugins/include/amxmodx.inc | 3 ++- plugins/include/fun.inc | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins/include/amxmodx.inc b/plugins/include/amxmodx.inc index 72a8a698..b9b7df60 100755 --- a/plugins/include/amxmodx.inc +++ b/plugins/include/amxmodx.inc @@ -17,6 +17,7 @@ #include #include #include +#include /* Function is called just after server activation. * Good place for configuration loading, commands and cvars registration. */ @@ -618,4 +619,4 @@ forward inconsistent_file(id,const filename[], reason[64] ); /* Forces the client and server to be running with the same * version of the specified file ( e.g., a player model ). */ -native force_unmodified(force_type, mins[3] , maxs[3], const filename[]); \ No newline at end of file +native force_unmodified(force_type, mins[3] , maxs[3], const filename[]); diff --git a/plugins/include/fun.inc b/plugins/include/fun.inc index bf16997b..4637a954 100755 --- a/plugins/include/fun.inc +++ b/plugins/include/fun.inc @@ -5,6 +5,11 @@ * This file is provided as is (no warranties). */ +#if defined _fun_included + #endinput +#endif +#define _fun_included + /* Returns 1 if receiver hears sender via voice communication. */ native get_client_listen(receiver, sender); @@ -78,4 +83,4 @@ native get_user_noclip(index); /* Gives player silent footsteps. * if set = 0 it will return footsteps to normal */ -native set_user_footsteps(id, set = 1); \ No newline at end of file +native set_user_footsteps(id, set = 1);