Fix typos in entity_intersects() and get_global_edict2() natives
This commit is contained in:
parent
fdebeab612
commit
d91144a10d
|
@ -1568,10 +1568,10 @@ static cell AMX_NATIVE_CALL entity_intersects(AMX *amx, cell *params) // bool:en
|
|||
pevOther->absmax.y < pevEntity->absmin.y ||
|
||||
pevOther->absmax.z < pevEntity->absmin.z)
|
||||
{
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
AMX_NATIVE_INFO ent_NewNatives[] =
|
||||
|
|
|
@ -170,14 +170,9 @@ static cell AMX_NATIVE_CALL get_global_edict2(AMX *amx, cell *params)
|
|||
return -1;
|
||||
}
|
||||
|
||||
if (!FNullEnt(pReturnEntity))
|
||||
{
|
||||
return TypeConversion.edict_to_id(pReturnEntity);
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
static cell AMX_NATIVE_CALL get_global_edict(AMX *amx, cell *params) // globals_get_edict(variable); = 1 param
|
||||
{
|
||||
cell res = get_global_edict2(amx, params);
|
||||
|
|
Loading…
Reference in New Issue
Block a user