diff --git a/cogs/commands/event_sync.py b/cogs/commands/event_sync.py index 6396cdb..db7ae57 100644 --- a/cogs/commands/event_sync.py +++ b/cogs/commands/event_sync.py @@ -50,6 +50,8 @@ async def event(self, ctx: Context, days: int = 7, logging: bool = False): # Add events for ev in events: + if datetime.fromisoformat(ev.get("start_time")) < datetime.now(LONDON): + continue await self.update_event(ctx, ev, links, dc_events) await ctx.send("Done :)")