From 09bdd939f2c73a05f4518081b4359aa27e72fc6f Mon Sep 17 00:00:00 2001 From: "tamservo@mx.sdf.org" Date: Fri, 27 Sep 2024 16:03:00 -0400 Subject: [PATCH] Added steer command. --- robottas.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/robottas.py b/robottas.py index d86a34c..1eaf484 100755 --- a/robottas.py +++ b/robottas.py @@ -1046,6 +1046,7 @@ class Robottas(commands.Bot): " !ricky\n" + " !rude - Charles thinks it's rude.\n" + " !stupid\n" + + " !steer\n" + " !undercut\n" + " !wall - Lance is in the wall") @@ -1326,6 +1327,10 @@ class Robottas(commands.Bot): async def stupid(ctx): await self.send_image(ctx, "images/stupid.png") + @self.command() + async def steer(ctx): + await self.send_image(ctx, "images/steer.png") + @self.command() async def undercut(ctx): await self.send_image(ctx, "images/undercut.png")