From 4d843e0792f213421ff0d5cb079b8683b35197c1 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Fri, 30 Jul 2004 14:17:28 +0000 Subject: [PATCH] removed forward server_changelevel() --- plugins/include/engine.inc | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/plugins/include/engine.inc b/plugins/include/engine.inc index 375c5934..aa862568 100755 --- a/plugins/include/engine.inc +++ b/plugins/include/engine.inc @@ -14,9 +14,9 @@ #include -native engfunc(type,{Float,_}:...) -native dllfunc(type,{Float,_}:...) -native traceresult(type,{Float,_}:...) +native engfunc(type,{Float,_}:...); +native dllfunc(type,{Float,_}:...); +native traceresult(type,{Float,_}:...); /* Registers a client impulse to a function. Function is passed the ID of the user. */ native register_impulse(impulse, function[]); @@ -82,11 +82,11 @@ native precache_generic(szFile[]); /* Precaches an event. */ native precache_event(type, Name[], {float,_}:...); -//set/get a user's speak flags +/* set/get a user's speak flags */ native set_speak(iIndex, iSpeakFlags) native get_speak(iIndex) -//Drops an entity to the floor (work?) +/* Drops an entity to the floor (work?) */ native drop_to_floor(entity) /* Get whole buffer containing keys and their data. */ @@ -215,7 +215,7 @@ native Float:halflife_time(); /* Sets map lighting, #OFF to disable. */ native set_lights(const Lighting[]); -// Sets/Gets what engine messages are blocked. */ +/* Sets/Gets what engine messages are blocked. */ native set_msg_block(iMessage, iMessageFlags); native get_msg_block(iMessage); @@ -256,8 +256,6 @@ forward client_PostThink(id); /* Forward for impulses. */ forward client_impulse(id, impulse); -forward server_changelevel(map[]); - /* Called when an entity "thinks" (DispatchThink) */ forward pfn_think(entid);