From fedf54b730f1ce64317d3cf76b69b705e85fc7d6 Mon Sep 17 00:00:00 2001 From: ZeWaka Date: Sat, 12 Aug 2023 21:09:52 -0700 Subject: [PATCH 1/3] rewrite the command desc --- goonmisc/goonmisc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/goonmisc/goonmisc.py b/goonmisc/goonmisc.py index aa82574..e28c74d 100644 --- a/goonmisc/goonmisc.py +++ b/goonmisc/goonmisc.py @@ -918,8 +918,8 @@ async def close_menu( await message.delete() @commands.command() - async def readme(self, ctx: commands.Context): - """Shows a passive aggressive message about how users should read the guides.""" + async def consultreadme(self, ctx: commands.Context): + """Shows boilerplate text reminding to follow the readme closely and not deviate""" ctx.send("Users are reminded that the official code guides and readmes exist for a *reason*, \ and disregarding such advice as 'use visual studio code' will void any asking for help rights that you may own. \ https://cdn.discordapp.com/attachments/890313890003566632/1075712022760652850/the_sign.png") From d0f58c1da1b59909f90432c57e82fb7206822251 Mon Sep 17 00:00:00 2001 From: ZeWaka Date: Sat, 12 Aug 2023 21:09:52 -0700 Subject: [PATCH 2/3] fixx Co-authored-by: pali <6pali6@gmail.com> --- goonmisc/goonmisc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goonmisc/goonmisc.py b/goonmisc/goonmisc.py index e28c74d..87a388a 100644 --- a/goonmisc/goonmisc.py +++ b/goonmisc/goonmisc.py @@ -920,6 +920,6 @@ async def close_menu( @commands.command() async def consultreadme(self, ctx: commands.Context): """Shows boilerplate text reminding to follow the readme closely and not deviate""" - ctx.send("Users are reminded that the official code guides and readmes exist for a *reason*, \ + await ctx.send("Users are reminded that the official code guides and readmes exist for a *reason*, \ and disregarding such advice as 'use visual studio code' will void any asking for help rights that you may own. \ https://cdn.discordapp.com/attachments/890313890003566632/1075712022760652850/the_sign.png") From edea37e70aa8c3e40a930c33a904fafd8eb5ac15 Mon Sep 17 00:00:00 2001 From: ZeWaka Date: Sun, 13 Aug 2023 15:42:13 -0700 Subject: [PATCH 3/3] improvements --- goonmisc/goonmisc.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/goonmisc/goonmisc.py b/goonmisc/goonmisc.py index 87a388a..e94d1a5 100644 --- a/goonmisc/goonmisc.py +++ b/goonmisc/goonmisc.py @@ -919,7 +919,12 @@ async def close_menu( @commands.command() async def consultreadme(self, ctx: commands.Context): - """Shows boilerplate text reminding to follow the readme closely and not deviate""" - await ctx.send("Users are reminded that the official code guides and readmes exist for a *reason*, \ -and disregarding such advice as 'use visual studio code' will void any asking for help rights that you may own. \ - https://cdn.discordapp.com/attachments/890313890003566632/1075712022760652850/the_sign.png") + """Shows boilerplate text reminding to follow the readme closely""" + await ctx.send("The code guides and readmes exist for a *reason*, that being it's the easiest way to do things.\ + Disregarding such advice as 'Use Visual Studio Code' will cause pain and suffering we're not responsible for. \ + https://github.com/goonstation") + + @commands.command() + async def questions(self, ctx: commands.Context): + """Links to a page about asking questions in #imcoder""" + await ctx.send("https://zewaka.webcam/questions") \ No newline at end of file