From c14bec7b1fd1219673fdd406c6acd2b25c85e1d8 Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Mon, 7 Nov 2022 08:04:25 -0800 Subject: [PATCH] update help text for decide function --- app/cogs/cheeky_functions.py | 6 +++++- app/decide.py | 0 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 app/decide.py diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 7fa5f42e..a6be9282 100644 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -15,7 +15,11 @@ class Cheeky(commands.Cog): name="decide", description="Separate your choices with the word 'or', or dont to get a yes or no response.", ) - @option(name="input_string", required=True) + @option( + name="input_string", + required=True, + description="Separate your choices with 'or', or enter a singular choice to get a yes/no answer.", + ) async def decide(self, ctx, input_string): import random diff --git a/app/decide.py b/app/decide.py new file mode 100644 index 00000000..e69de29b