From 8009c59d461e353208702d98daa682313d66c968 Mon Sep 17 00:00:00 2001 From: neoarz Date: Thu, 18 Sep 2025 18:31:02 -0400 Subject: [PATCH] fix(keanu): set command to ephemeral=False Expanded the TODO list with more detailed tasks and command breakdowns. Changed the keanu cog to send non-ephemeral messages for initial interaction responses. --- TODO.md | 16 +++++++++++++--- cogs/miscellaneous/keanu.py | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/TODO.md b/TODO.md index 2c04410..6611fba 100644 --- a/TODO.md +++ b/TODO.md @@ -1,19 +1,29 @@ # Todo List for Syntrel -[ ] Finish idevice commands +[ ] Finish [idevice commands](https://github.com/jkcoxson/idevice/blob/master/idevice/src/lib.rs#L522) +> [ ] Add /idevice command +> +> [ ] Add /idevice-pair command +> +> [ ] Add /no apps command [ ] Add unit tests [ ] Add documentation to readme [ ] Create utility commands +> [ ] Add /ai command +> +> [ ] Add /translate command +> +> [ ] Add /tweety command +> +> [ ] Add /videodownload command [ ] Clean tag system from [tags branch](https://github.com/neoarz/Syntrel/tree/tags) (make sure db is persistent) [ ] Fix logging and add graceful shutdown -[ ] Add video downloader commands (yt-dlp) - [ ] Add uptime checker for the bot iself diff --git a/cogs/miscellaneous/keanu.py b/cogs/miscellaneous/keanu.py index b078673..b5383d3 100644 --- a/cogs/miscellaneous/keanu.py +++ b/cogs/miscellaneous/keanu.py @@ -21,7 +21,7 @@ class Keanu(commands.Cog, name="keanu"): if getattr(context, "interaction", None): inter = context.interaction if not inter.response.is_done(): - await inter.response.send_message(embed=embed, ephemeral=True) + await inter.response.send_message(embed=embed, ephemeral=False) else: await inter.followup.send(embed=embed, ephemeral=True) else: