From 0ed7ab6727a4c6422930798aa61a3d577fccf2f3 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 29 Mar 2024 07:18:17 -0400 Subject: [PATCH] feat(bible): added documentation link to cog-level help embed --- bible/bible.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bible/bible.py b/bible/bible.py index 5b7305f..809c157 100644 --- a/bible/bible.py +++ b/bible/bible.py @@ -22,7 +22,8 @@ class Bible(commands.Cog): """Retrieve Bible verses from the API.bible API.""" __author__ = ["SeaswimmerTheFsh"] - __version__ = "1.0.1" + __version__ = "1.0.2" + __documentation__ = "https://seacogs.coastalcommits.com/bible/" def __init__(self, bot: Red): super().__init__() @@ -42,6 +43,7 @@ class Bible(commands.Cog): f"{pre_processed}{n}", f"Cog Version: **{self.__version__}**", f"Author: {humanize_list(self.__author__)}", + f"Documentation: {self.__documentation__}", ] return "\n".join(text)