Hi, i want to create a new VC in a given category, but i get a AttributeError: 'int' object has no attribute 'id' error. The code i used:
@bot.slash_command(description="Maak een support voice-kanaal aan!")
async def support_voice(inter):
guild = bot.get_guild(env_variable.GUILD_ID)
await guild.create_voice_channel("test", category=979395372738818116)
await inter.response.send_message("I workzz", ephemeral=True)```
Do i need to get the channel by name or?