mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Oops! Forgot to MF_Add pev
This commit is contained in:
parent
2f64226c6b
commit
a89e1ac536
@ -6,7 +6,7 @@ void OnAmxxAttach()
|
|||||||
{
|
{
|
||||||
MF_AddNatives(engfunc_natives);
|
MF_AddNatives(engfunc_natives);
|
||||||
MF_AddNatives(dllfunc_natives);
|
MF_AddNatives(dllfunc_natives);
|
||||||
//MF_AddNatives(pev_natives);
|
MF_AddNatives(pev_natives);
|
||||||
MF_AddNatives(forward_natives);
|
MF_AddNatives(forward_natives);
|
||||||
MF_AddNatives(pdata_natives);
|
MF_AddNatives(pdata_natives);
|
||||||
MF_AddNatives(tr_Natives);
|
MF_AddNatives(tr_Natives);
|
||||||
|
@ -46,6 +46,7 @@ extern AMX_NATIVE_INFO dllfunc_natives[];
|
|||||||
extern AMX_NATIVE_INFO forward_natives[];
|
extern AMX_NATIVE_INFO forward_natives[];
|
||||||
extern AMX_NATIVE_INFO pdata_natives[];
|
extern AMX_NATIVE_INFO pdata_natives[];
|
||||||
extern AMX_NATIVE_INFO tr_Natives[];
|
extern AMX_NATIVE_INFO tr_Natives[];
|
||||||
|
extern AMX_NATIVE_INFO pev_natives[];
|
||||||
extern TraceResult g_tr;
|
extern TraceResult g_tr;
|
||||||
|
|
||||||
/* Wouldnt modifying the table AFTER it's memcpy'd be ... pointless?
|
/* Wouldnt modifying the table AFTER it's memcpy'd be ... pointless?
|
||||||
|
Loading…
Reference in New Issue
Block a user