From d40a0fed1f1583b188fe2b5978e2a0250c8d72bd Mon Sep 17 00:00:00 2001 From: s1lentq Date: Fri, 2 Feb 2024 04:50:56 +0700 Subject: [PATCH] Fix broken order in amxx includes (Related #263) (Resolves #300) --- .../amxmodx/scripting/include/reapi_engine_const.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/reapi/extra/amxmodx/scripting/include/reapi_engine_const.inc b/reapi/extra/amxmodx/scripting/include/reapi_engine_const.inc index a88342c..2302d05 100644 --- a/reapi/extra/amxmodx/scripting/include/reapi_engine_const.inc +++ b/reapi/extra/amxmodx/scripting/include/reapi_engine_const.inc @@ -171,12 +171,6 @@ enum EngineFunc */ RH_SV_ClientPrintf, - /* - * Description: Called when a command is being sent to server. - * Params: (const cmd[], source, id) - */ - RH_ExecuteServerStringCmd, - /* * Description: Called before adding an entity to the physents of a player. * Return type: bool @@ -184,6 +178,12 @@ enum EngineFunc */ RH_SV_AllowPhysent, + /* + * Description: Called when a command is being sent to server. + * Params: (const cmd[], source, id) + */ + RH_ExecuteServerStringCmd, + }; /**