Ejemplo n.º 1
0
        public async Task AddExperienceAsync(IUser user, int xp)
        {
            var result = await _statController.AddExperienceAsync(user.Id, xp);

            await ReplyAsync(result.Message);
        }