From 44179ad42dcc54ca76f1029d873b137dec2ba1fb Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 1 Feb 2024 19:33:41 -0500 Subject: [PATCH] fix(bible): added documentation to the error message for Unauthorized --- bible/bible.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bible/bible.py b/bible/bible.py index 2a2ec7c..0612646 100644 --- a/bible/bible.py +++ b/bible/bible.py @@ -38,7 +38,8 @@ class Bible(commands.Cog): if isinstance(err, bible.errors.Unauthorized): await ctx.send( error( - "The API key for API.bible is missing or invalid. Please report this to the bot owner." + """The API key for API.bible is missing or invalid. Please report this to the bot owner. + If you are the bot owner, please check the documentation [here](https://seacogs.coastalcommits.com/bible/#setup).""" ) ) if isinstance(err, bible.errors.BibleAccessError):