From 9f9be060c13f5826e0426377ac369ced985fca1a Mon Sep 17 00:00:00 2001 From: Soheab_ <33902984+Soheab@users.noreply.github.com> Date: Wed, 20 Nov 2024 23:22:55 +0100 Subject: [PATCH] "send" -> "upload" --- discord/ext/commands/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index be3abdbc1..8eb32bdb2 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -1265,11 +1265,11 @@ class Command(_BaseCommand, Generic[CogT, P, T]): sticker_type = 'sticker' if optional: - result.append(f'[{name} (send a {sticker_type})]') + result.append(f'[{name} (upload a {sticker_type})]') elif greedy: - result.append(f'[{name} (send {sticker_type}s)]...') + result.append(f'[{name} (upload {sticker_type}s)]...') else: - result.append(f'<{name} (send a {sticker_type})>') + result.append(f'<{name} (upload a {sticker_type})>') continue # for typing.Literal[...], typing.Optional[typing.Literal[...]], and Greedy[typing.Literal[...]], the