Fixed spelling typo for HintTextMsg.
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401270
This commit is contained in:
parent
082d9ecafe
commit
2acb412f61
@ -281,7 +281,7 @@ bool CHalfLife2::TextMsg(int client, int dest, const char *msg)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool CHalfLife2::HinTextMsg(int client, const char *msg)
|
||||
bool CHalfLife2::HintTextMsg(int client, const char *msg)
|
||||
{
|
||||
bf_write *pBitBuf = NULL;
|
||||
cell_t players[] = {client};
|
||||
|
@ -76,7 +76,7 @@ public: //IGameHelpers
|
||||
typedescription_t *FindInDataMap(datamap_t *pMap, const char *offset);
|
||||
void SetEdictStateChanged(edict_t *pEdict, unsigned short offset);
|
||||
bool TextMsg(int client, int dest, const char *msg);
|
||||
bool HinTextMsg(int client, const char *msg);
|
||||
bool HintTextMsg(int client, const char *msg);
|
||||
bool ShowVGUIMenu(int client, const char *name, KeyValues *data, bool show);
|
||||
private:
|
||||
DataTableInfo *_FindServerClass(const char *classname);
|
||||
|
@ -370,7 +370,7 @@ static cell_t PrintHintText(IPluginContext *pContext, const cell_t *params)
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!g_HL2.HinTextMsg(client, buffer))
|
||||
if (!g_HL2.HintTextMsg(client, buffer))
|
||||
{
|
||||
return pContext->ThrowNativeError("Could not send a usermessage");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user