mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-04-01 07:19:06 +03:00
Update vector.inc
This commit is contained in:
parent
9d8dac5671
commit
f4583ced87
@ -139,7 +139,7 @@ stock FVecIVec(const Float:FVec[3], IVec[3])
|
|||||||
*/
|
*/
|
||||||
stock bool:IsVectorZero(const any:Vector[3])
|
stock bool:IsVectorZero(const any:Vector[3])
|
||||||
{
|
{
|
||||||
return (Vector[0] == 0 && Vector[1] == 0 && Vector[2] == 0) ? true : false;
|
return Vector[0] == 0 && Vector[1] == 0 && Vector[2] == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user