From a89e1ac5361c35067d19e1ebb8ed2fbefc8320b6 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 19 Jul 2005 16:08:00 +0000 Subject: [PATCH] Oops! Forgot to MF_Add pev --- dlls/fakemeta/fakemeta_amxx.cpp | 2 +- dlls/fakemeta/fakemeta_amxx.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/fakemeta/fakemeta_amxx.cpp b/dlls/fakemeta/fakemeta_amxx.cpp index a22e23cc..5da36ea1 100755 --- a/dlls/fakemeta/fakemeta_amxx.cpp +++ b/dlls/fakemeta/fakemeta_amxx.cpp @@ -6,7 +6,7 @@ void OnAmxxAttach() { MF_AddNatives(engfunc_natives); MF_AddNatives(dllfunc_natives); - //MF_AddNatives(pev_natives); + MF_AddNatives(pev_natives); MF_AddNatives(forward_natives); MF_AddNatives(pdata_natives); MF_AddNatives(tr_Natives); diff --git a/dlls/fakemeta/fakemeta_amxx.h b/dlls/fakemeta/fakemeta_amxx.h index 36404a33..79c62ec0 100755 --- a/dlls/fakemeta/fakemeta_amxx.h +++ b/dlls/fakemeta/fakemeta_amxx.h @@ -46,6 +46,7 @@ extern AMX_NATIVE_INFO dllfunc_natives[]; extern AMX_NATIVE_INFO forward_natives[]; extern AMX_NATIVE_INFO pdata_natives[]; extern AMX_NATIVE_INFO tr_Natives[]; +extern AMX_NATIVE_INFO pev_natives[]; extern TraceResult g_tr; /* Wouldnt modifying the table AFTER it's memcpy'd be ... pointless?