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):