feat(idevice): add developermode command

This commit is contained in:
neoarz
2025-09-26 20:30:46 -04:00
parent bb46f61a61
commit a305c87f4a
3 changed files with 53 additions and 0 deletions

View File

@@ -154,6 +154,11 @@ class ideviceSelect(discord.ui.Select):
value="errorcodes",
description="Browse idevice error codes",
),
discord.SelectOption(
label="Developer Mode",
value="developermode",
description="How to turn on developer mode",
),
]
super().__init__(placeholder="Choose an idevice command...", options=options)
@@ -266,5 +271,6 @@ class idevice(commands.Cog, name="idevice"):
await context.send(embed=embed, view=view)
async def setup(bot) -> None:
await bot.add_cog(idevice(bot))