rrcampbell-exe / real-fake-birds

A guessing game featuring real fake birds.
https://www.realfakebirds.app
1 stars 0 forks source link

Update logic for isNewBestStreak, Introduce Celebrations for Same #73

Open rrcampbell-exe opened 11 months ago

rrcampbell-exe commented 11 months ago

Currently, though isNewBestStreak is incorporated into the responseEval function, the boolean it returns is not correct. isNewBestStreak should only be true when a player's currentStreak is one greater than their previous best streak.

To achieve this, it's possible that a value like previousBestStreak will need to be introduced, and that isNewBestStreak should only be true when its value is one greater than previousBestStreak, which will get updated when currentStreak surpasses it in value.