removed server_changelevel (at24675 - oneyed)

This commit is contained in:
David Anderson 2006-02-01 12:33:31 +00:00
parent 7070273616
commit f40ae48849
2 changed files with 0 additions and 22 deletions

View File

@ -148,7 +148,6 @@ int FF_PluginLog = -1;
int FF_PluginEnd = -1;
int FF_InconsistentFile = -1;
int FF_ClientAuthorized = -1;
int FF_ChangeLevel = -1;
// Precache stuff from force consistency calls
// or check for pointed files won't be done
@ -317,7 +316,6 @@ int C_Spawn(edict_t *pent)
FF_PluginEnd = registerForward("plugin_end", ET_IGNORE, FP_DONE);
FF_InconsistentFile = registerForward("inconsistent_file", ET_STOP, FP_CELL, FP_STRING, FP_STRINGEX, FP_DONE);
FF_ClientAuthorized = registerForward("client_authorized", ET_IGNORE, FP_CELL, FP_DONE);
FF_ChangeLevel = registerForward("server_changelevel", ET_STOP, FP_STRING, FP_DONE);
modules_callPluginsLoaded();
@ -986,22 +984,6 @@ void C_MessageEnd_Post(void)
RETURN_META(MRES_IGNORED);
}
void C_ChangeLevel(char* s1, char* s2)
{
if (FF_ChangeLevel)
{
int retVal = 0;
char *map = s1;
retVal = executeForwards(FF_ChangeLevel, map);
if (retVal)
RETURN_META(MRES_SUPERCEDE);
}
RETURN_META(MRES_IGNORED);
}
const char *C_Cmd_Args(void)
{
// if the global "fake" flag is set, which means that engclient_cmd was used, supercede the function
@ -1450,7 +1432,6 @@ C_DLLEXPORT int GetEngineFunctions(enginefuncs_t *pengfuncsFromEngine, int *inte
meta_engfuncs.pfnCmd_Args = C_Cmd_Args;
meta_engfuncs.pfnPrecacheModel = C_PrecacheModel;
meta_engfuncs.pfnPrecacheSound = C_PrecacheSound;
meta_engfuncs.pfnChangeLevel = C_ChangeLevel;
memcpy(pengfuncsFromEngine, &meta_engfuncs, sizeof(enginefuncs_t));

View File

@ -36,9 +36,6 @@ forward plugin_cfg();
/* Function called before plugin unloading (server deactivation) */
forward plugin_end();
/* Function called to handle changelevel */
forward server_changelevel(map[]);
/* Called on log message. */
forward plugin_log();