From a4655cdb525fdf1390d65f0346b18ea8c326e64f Mon Sep 17 00:00:00 2001 From: Gabriella Date: Mon, 22 Dec 2025 11:09:52 -0600 Subject: [PATCH] Add new command for source code --- .DS_Store | Bin 0 -> 6148 bytes src/bot_core.py | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..bb9f8be271334a9bbf33b6bec7da81ceb1791742 GIT binary patch literal 6148 zcmeHKO-sW-5S>jU1VqTuWA1{`f3TML2P}d|X)A4^A;ph-&R+a2{tC}tJ^537Z)dex z8azso8Q6WZ^LBQU2ieVvh?_hu#v-MN6lg?8XTTU9q_Q}fq~jW!<#;-8o9)0NhZ^Fu z=W;GfS<7Sk{2$kSu4(IfwrOXG73KTQ%gOrfBIOsq^4nEUo1;&p%19pMUgl}lv)3Kd zuj#X^yXRG?8S|QUS8<WODPGgH76Fa=BjQ-BKK%%&B`iq@L~rhqB%qX74Z3XSL^ zc8X!^K$l@iJ}1)P^DaTGBKnA(A{dy{RG_B1c*SsnF6N3KU2Wv^|YSgrQ+GT_j){QE3{iQ r8s~L%VDOWl01UW~oCZ?)iazG~h@B!=VLYS*?MEO8Vx1}Q2MT-vHd8>F literal 0 HcmV?d00001 diff --git a/src/bot_core.py b/src/bot_core.py index d9f2250..39bbfdf 100644 --- a/src/bot_core.py +++ b/src/bot_core.py @@ -51,6 +51,9 @@ async def ping(interaction: discord.Interaction): await interaction.response.send_message('go fuck yourself (bot is running)') return +@client.tree.command() +async def source(interaction: discord.Interaction): + await interaction.response.send_message('Bot source code can be found [here.](https://git.contrastellar.com/contrastellar/very-bad-bot)') @client.event async def on_reaction_add(react: discord.Reaction, user: discord.User):