Skip to content

Commit

Permalink
✨ Add completion message after contract boosting
Browse files Browse the repository at this point in the history
Completing the contract boosting process now displays a message indicating the
boosting has been completed successfully along with further instructions.
  • Loading branch information
mkmccarty committed Jul 7, 2024
1 parent 503dc44 commit 4b35e03
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 4b35e03

Please sign in to comment.