From 0bcb1e488f131f4ed11584522df8b640aa7f7ea7 Mon Sep 17 00:00:00 2001 From: tamservo Date: Sat, 29 Jul 2023 12:57:04 -0400 Subject: [PATCH] Clarified response message from !rbdelay to indicate seconds. --- robottas.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/robottas.py b/robottas.py index a7b24ce..fbf6754 100755 --- a/robottas.py +++ b/robottas.py @@ -734,12 +734,12 @@ class Robottas(commands.Bot): try: secs = int(delay) if secs < 10 or secs > 300: - await ctx.send("delay must be between 10 and 300") + await ctx.send("Delay must be between 10 and 300.") else: self.delay = secs - await ctx.send(f"delay set to {secs}") + await ctx.send(f"Delay set to {secs} seconds.") except: - await ctx.send("invalid delay value") + await ctx.send(f"Invalid delay value ({secs}).") @self.command()