From 0580213cb6dbb6805a72cdf3b7a4439a2dbfff06 Mon Sep 17 00:00:00 2001 From: TrustyJAID Date: Tue, 15 Nov 2022 21:56:56 -0700 Subject: [PATCH] Fix `[p]helpset usemenus disable` (#5907) --- redbot/core/core_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 25f772f19..fb3c632b2 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -3760,7 +3760,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): if use_menus == "reactions": msg = _("Help will use reaction menus.") await ctx.bot._config.help.use_menus.set(1) - if use_menus == "disabled": + if use_menus == "disable": msg = _("Help will not use menus.") await ctx.bot._config.help.use_menus.set(0)