From adcd6a850608e2cfd24a49cc65e8a10a2678bd32 Mon Sep 17 00:00:00 2001 From: Conatum Date: Mon, 20 Sep 2021 20:49:12 +0300 Subject: [PATCH] fix (rooms cmd): Fix slot filtering in booking. --- bot/modules/accountability/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/modules/accountability/commands.py b/bot/modules/accountability/commands.py index e95114b3..133756e0 100644 --- a/bot/modules/accountability/commands.py +++ b/bot/modules/accountability/commands.py @@ -193,6 +193,7 @@ async def cmd_rooms(ctx): ) slot_rows = accountability_rooms.fetch_rows_where( + guildid=ctx.guild.id, start_at=to_book ) slotids = [row.slotid for row in slot_rows]