From 5cc6af5917f10fa1e2081edfb3f5dfd76fcd4376 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 6 Sep 2022 02:37:16 -0400 Subject: [PATCH] Fix CommandSyncFailure raising for other 400 error types --- discord/app_commands/tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/app_commands/tree.py b/discord/app_commands/tree.py index 5ee4a6ac8..025bc1ae1 100644 --- a/discord/app_commands/tree.py +++ b/discord/app_commands/tree.py @@ -1068,7 +1068,7 @@ class CommandTree(Generic[ClientT]): else: data = await self._http.bulk_upsert_guild_commands(self.client.application_id, guild.id, payload=payload) except HTTPException as e: - if e.status == 400: + if e.status == 400 and e.code == 50035: raise CommandSyncFailure(e, commands) from None raise