hello. I want to check AirDrop [active or not active].
This code always return "True", but its not right.
Thanks for your answers
This code always return "True", but its not right.
Thanks for your answers
bool IsAir()
{
foreach (var check in BaseNetworkable.serverEntities)
{
if (check is CargoPlane)
{
return true;
}
}
return false;
}