From 31ea6f331b2f3796f7c6e1047162dae835c0b30c Mon Sep 17 00:00:00 2001
From: Elliu <goyard.louis@gmail.com>
Date: Thu, 24 Dec 2020 19:24:44 +0100
Subject: [PATCH] Allowing trailing 's'

---
 launch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/launch.py b/launch.py
index e3cfd81..11339fc 100644
--- a/launch.py
+++ b/launch.py
@@ -99,7 +99,7 @@ async def on_message(message):
         mess += "\n```"
         await message.channel.send(mess)
     if ("show me a" in lower) or ("show me more" in lower):
-        name = re.search(r"show me (an?|more) ([\S]+)", lower)
+        name = re.search(r"show me (an?|more) ([\S]+)s?", lower)
         if name == None:
             return
         else:
-- 
GitLab