From add02dc55e06a071f8e609f30792de01d1ca0223 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Tue, 5 Jun 2007 02:38:48 +0000 Subject: [PATCH] Fixed amb365 - EF_SetSize() stock had incorrect params --- plugins/include/fakemeta_stocks.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/fakemeta_stocks.inc b/plugins/include/fakemeta_stocks.inc index ec3b206e..7a7a6bb0 100755 --- a/plugins/include/fakemeta_stocks.inc +++ b/plugins/include/fakemeta_stocks.inc @@ -27,8 +27,8 @@ stock EF_ModelIndex(const STRING[]) stock EF_ModelFrames(modelIndex) return engfunc(EngFunc_ModelFrames, modelIndex); -stock EF_SetSize(const STRING[]) - return engfunc(EngFunc_SetSize, STRING); +stock EF_SetSize(const ENTITY, const Float:MIN[3], const Float:MAX[3]) + return engfunc(EngFunc_SetSize, ENTITY, MIN, MAX); stock EF_ChangeLevel(const S1[], const S2[]) return engfunc(EngFunc_ChangeLevel, S1, S2); stock EF_VecToYaw(const Float:VECTOR[3], &Float:returnValue)