From 306684885369c2477b5c16df2843971c5df14127 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 29 Mar 2024 07:18:22 -0400 Subject: [PATCH] feat(nerdify): added documentation link to cog-level help embed --- nerdify/nerdify.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nerdify/nerdify.py b/nerdify/nerdify.py index dc97886..76307b1 100644 --- a/nerdify/nerdify.py +++ b/nerdify/nerdify.py @@ -18,7 +18,8 @@ class Nerdify(commands.Cog): """Nerdify your text.""" __author__ = ["SeaswimmerTheFsh"] - __version__ = "1.3.3" + __version__ = "1.3.4" + __documentation__ = "https://seacogs.coastalcommits.com/nerdify/" def __init__(self, bot): self.bot = bot @@ -30,6 +31,7 @@ class Nerdify(commands.Cog): f"{pre_processed}{n}", f"Cog Version: **{self.__version__}**", f"Author: {chat_formatting.humanize_list(self.__author__)}", + f"Documentation: {self.__documentation__}" ] return "\n".join(text)