Skip to content

Commit

Permalink
Merge pull request #456 from mkmccarty/Virtual-branch
Browse files Browse the repository at this point in the history
✨ Add completion message after contract boosting
  • Loading branch information
mkmccarty authored Jul 7, 2024
2 parents 503dc44 + 4b35e03 commit 692633c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/boost/boost_draw.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,12 +277,11 @@ func DrawBoostList(s *discordgo.Session, contract *Contract) string {
t1 := contract.EndTime
t2 := contract.StartTime
duration := t1.Sub(t2)
outputStr += fmt.Sprintf("Contract boosting complete in %s\n", duration.Round(time.Second))
outputStr += "\n"
outputStr += fmt.Sprintf("Contract boosting complete in %s!!\n", duration.Round(time.Second))

sinkID := contract.Banker.CurrentBanker
if sinkID != "" {
outputStr += "\n"
outputStr += "Contract Boosting Completed!\n\n"
outputStr += "> Send every " + tokenStr + " to our sink " + contract.Boosters[sinkID].Mention + "\n"
}
}
Expand Down

0 comments on commit 692633c

Please sign in to comment.