From e307d62343ee32d7bfb52134ad492bdfcec51fb8 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Mon, 11 Oct 2021 16:33:09 -0700 Subject: [PATCH] [DiscordExperiments] Add another alternate ID --- discordexperiments/discordexperiments.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/discordexperiments/discordexperiments.py b/discordexperiments/discordexperiments.py index 07765b6..8050767 100644 --- a/discordexperiments/discordexperiments.py +++ b/discordexperiments/discordexperiments.py @@ -51,6 +51,17 @@ class DiscordExperiments(commands.Cog): app_name = "YouTube Together (Old Version)" await self._create_invite(ctx, 755600276941176913, invite_max_age_in_seconds, app_name) + @commands.cooldown(1, 10, discord.ext.commands.BucketType.guild) + @commands.command() + async def ytpartydev(self, ctx, invite_max_age_in_seconds=86400): + """ + Create a YouTube Together voice channel invite, the dev version. + + Use `0` for `invite_max_age_in_seconds` if you want the invite to be permanent. + """ + app_name = "YouTube Together (Dev Version)" + await self._create_invite(ctx, 880218832743055411, invite_max_age_in_seconds, app_name) + @commands.cooldown(1, 10, discord.ext.commands.BucketType.guild) @commands.command() async def betrayal(self, ctx, invite_max_age_in_seconds=86400):