1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Correct reference to the start time

This commit is contained in:
Phxntxm 2017-03-27 21:57:31 -05:00
parent 08980f4cbb
commit 18a36ad9a0

View file

@ -89,7 +89,7 @@ class Game:
@property
def time_left(self):
return (pendulum.utcnow() - self.bot.uptime).in_words()
return (pendulum.utcnow() - self.start_time).in_words()
def join(self, member):
"""Adds a member to the list of entrants"""