1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-12-02 14:24:16 +01:00

fixed amb1284 - silly bug in client meta handler

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40598
This commit is contained in:
David Anderson 2007-12-14 14:55:37 +00:00
parent a04f24a129
commit 50ac19a53b

View File

@ -405,9 +405,10 @@ void ClientCommand(edict_t *pEdict, const CCommand &_cmd)
if (strcmp(cmd.GetArg(0), "meta") == 0)
{
Command_ClientMeta(pEdict, &cmd);
RETURN_META(MRES_SUPERCEDE);
}
RETURN_META(MRES_SUPERCEDE);
RETURN_META(MRES_IGNORED);
}
bool vcmp(const void *_addr1, const void *_addr2, size_t len)