Updating Raffle status

This commit is contained in:
Sean "Solao Bajiuik" Stoves 2020-06-03 20:11:45 -04:00
parent 7712a2c298
commit 89b0abde44

View File

@ -197,8 +197,8 @@ namespace ChaosBot.Discord.Modules
{
ulong userId = Convert.ToUInt64(user.Substring(3, user.Length-4));
sb.AppendLine($"<@{userId}>, you have {_currentPot.GetValueOrDefault(userId)} rafflepoints.");
sb.AppendLine($"There is a total of {_currentPot.Values.Sum()} rafflepoints.");
sb.AppendLine($"<@{userId}>, you have {RaffleRepository.selectUser(userId.ToString()).Length} rafflepoints.");
sb.AppendLine($"There is a total of {RaffleRepository.all().Length} rafflepoints.");
}
}
}