// log air planes spawned void OnAirdrop(CargoPlane plane, Vector3 location) { if (LogAiredrop()) { executeQuery("INSERT INTO server_log_airdrop (plane, location, time) VALUES (@0, @1, @2)", plane.ToString(), location.ToString(), getDateTime()); } }