From b569ea3c3f3fd9c830465e3ed590f4a2575c4166 Mon Sep 17 00:00:00 2001 From: Pavol Marko Date: Wed, 20 Oct 2004 14:16:46 +0000 Subject: [PATCH] Fixed bug where message_begin could not send MSG_PAS_R and MSG_PVS_R (reliable versions) messages. Reported by Damaged Soul --- amxmodx/amxmodx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/amxmodx/amxmodx.cpp b/amxmodx/amxmodx.cpp index f7d91ecb..7e82df1b 100755 --- a/amxmodx/amxmodx.cpp +++ b/amxmodx/amxmodx.cpp @@ -1212,6 +1212,7 @@ static cell AMX_NATIVE_CALL message_begin(AMX *amx, cell *params) /* 4 param */ MESSAGE_BEGIN( params[1], params[2],NULL ); break; case MSG_PVS: case MSG_PAS: + case MSG_PVS_R: case MSG_PAS_R: if (numparam < 3) { amx_RaiseError(amx,AMX_ERR_NATIVE); return 0;