Beispiel #1
0
        public async Task Ban(IUser user)
        {
            Result result = await _ban.BanUserAsync(user, Context.Guild);

            if (result.IsSuccess)
            {
                await ReplyAsync($"Banned {user.Username}. owo");
            }
            else
            {
                await ReplyAsync($"Can't ban {user.Username}. p.p");
            }
        }