Fix, again, the total stars calculation

This commit is contained in:
Brian Buller 2021-12-02 11:44:30 -06:00
parent c17b064461
commit 50da41a134
1 changed files with 6 additions and 3 deletions

View File

@ -381,6 +381,7 @@ func (s *AoCState) AoCSilentBoardCheckAndUpdate(yr int) {
}
func (s *AoCState) AoCBoardCheckAndUpdate(yr int) {
stYr := strconv.Itoa(yr)
channelId, _ := s.getChannelId()
if s.AoCBoardNeedsUpdate(yr) {
l, err := s.aoc.GetLeaderboard(yr)
@ -413,11 +414,13 @@ func (s *AoCState) AoCBoardCheckAndUpdate(yr int) {
mbrAll := s.getMemberAllYears(v.ID)
// Gather all stars from all leaderboards
var totalStars int
for _, v := range mbrAll {
totalStars += v.Stars
for k, m := range mbrAll {
if k != stYr {
totalStars += m.Stars
}
}
// Add this new one into the total
allYearsText := fmt.Sprintf(" (%d for all years)", totalStars+1)
allYearsText := fmt.Sprintf(" (%d for all years)", totalStars+v.Stars)
if yr == s.GetLatestYear() {
s.SendSlackMessage(fmt.Sprintf(":christmas_tree: %s now has %d %s! :christmas_tree:%s", v.Name, v.Stars, plural, allYearsText), channelId)
} else {