From 4eabc02c36bdeb2738fd91002637d74beb1b1abd Mon Sep 17 00:00:00 2001 From: "kevin.caires" Date: Thu, 18 Aug 2022 12:40:48 -0300 Subject: [PATCH] FIX some responses. --- utils/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/commands.py b/utils/commands.py index 33be317..3a6d7bd 100644 --- a/utils/commands.py +++ b/utils/commands.py @@ -78,7 +78,7 @@ async def by_id(bot, _id: int=None) -> str: quote = get_by_id(_id) if not quote: - return await bot.send("_Got wrong, you socker!_\nThis ID doesn't exist in database!") + return await bot.send("_Got wrong, you sucker!_\nThis ID doesn't exist in database!") try: # To image links. @@ -107,7 +107,7 @@ async def delete_quote(bot, _id: int=None) -> str: quote = get_by_id(_id) if not quote: - return await bot.send("_Got wrong, you socker!_\nThis ID doesn't exist in database!") + return await bot.send("_Got wrong, you sucker!_\nYou have no permission to delete!") try: if not remove_quote(_id):