public static bool DiscoverHangarCommand(IReadOnlyList <string> arguments, ShipIGC shipIGC)
        {
            bool ret = false;

            if (!(shipIGC.IsRegistered))
            {
                shipIGC.Send("identify");
            }
            return(ret);
        }
        public static bool DockShipCommand(IReadOnlyList <string> arguments, ShipIGC shipIGC)
        {
            bool ret = false;

            if (shipIGC.IsRegistered)
            {
            }
            else
            {
                shipIGC.Send("identify");
            }
            return(ret);
        }