tweak (voice): Change expiry to 90s.

This commit is contained in:
2023-03-12 15:00:16 +02:00
parent 2657580d6f
commit 336a2cc365

View File

@@ -498,7 +498,7 @@ class VoiceTrackerCog(LionCog):
studied_today = await self.fetch_tracked_today(guildid, userid)
cap = lguild.config.get('daily_voice_cap').value
if studied_today >= cap - 60:
if studied_today >= cap - 90:
start_time = tomorrow
delay = (tomorrow - now).total_seconds()
else: