update help text for decide function

This commit is contained in:
Luke Robles 2022-11-07 08:04:25 -08:00
parent 7e99955a72
commit c14bec7b1f
2 changed files with 5 additions and 1 deletions

View File

@ -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

0
app/decide.py Normal file
View File