Ejemplo n.º 1
0
        public async Task customerTier2(CommandContext Context, DiscordUser requestedUser)
        {
            await Context.Message.DeleteAsync();

            if (Context.Member.Id.ToString() == requestedUser.Id.ToString())
            {
                ProfileSender.yourProfile(Context);
            }
            else
            {
                ProfileSender.otherProfile(Context, requestedUser);
            }
        }
Ejemplo n.º 2
0
        public async Task customerTier(CommandContext Context)
        {
            await Context.Message.DeleteAsync();

            ProfileSender.yourProfile(Context);
        }