From 93958a0943f964ffc4a09e1b3e60a63d8149f64b Mon Sep 17 00:00:00 2001 From: George Tsatsis Date: Mon, 30 Mar 2020 21:02:20 +0300 Subject: [PATCH] add rules_channel_id to schemas --- litecord/schemas.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litecord/schemas.py b/litecord/schemas.py index 1d65837..2e88661 100644 --- a/litecord/schemas.py +++ b/litecord/schemas.py @@ -292,6 +292,7 @@ GUILD_UPDATE = { "owner_id": {"type": "snowflake", "required": False}, "system_channel_id": {"type": "snowflake", "required": False, "nullable": True}, "features": {"type": "list", "required": False, "schema": {"type": "string"}}, + "rules_channel_id": {"type": "snowflake", "required": False, "nullable": True}, }