diff options
Diffstat (limited to '')
-rwxr-xr-x | cogs/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 1555d58..19d16b0 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -60,7 +60,8 @@ class Utils(commands.Cog): @findseed.error async def findseed_handler(self,ctx,error): if isinstance(error, commands.CommandOnCooldown): - await ctx.send(f"{ctx.message.author.display_name}, you have to wait {round(error.retry_after, 2)} seconds before using this again.") + return + #await ctx.send(f"{ctx.message.author.display_name}, you have to wait {round(error.retry_after, 7)} seconds before using this again.") @commands.Cog.listener() async def on_message(self, message): |