Nyhilo / Duck-Disciple-Bot

A bot for adding helpful tools to the Infinite Nomic discord
http://nomic.gay
MIT License
3 stars 2 forks source link

Fix off-by-one error in _get_phase() calculation #98

Closed Nyhilo closed 2 years ago

Nyhilo commented 2 years ago

days_since_beginning = (date - START_DATE).days returns 0 for the first day, and therefore 2 for the third day. We add a +1 so it returns 3 for the third day, etc.