fix(tempvoice): prefix generated channel names for clearer voice-channel context

This commit is contained in:
zv
2026-04-29 20:13:40 +02:00
parent 888aea3550
commit aa009811ac

View File

@@ -57,6 +57,9 @@ class TempVoice(commands.Cog):
name = name.strip(" .")
if not name:
name = "user-{}".format(fallback_id)
# Prefix generated channel names for clearer voice-channel context.
name = "🔊 {}".format(name)
return name[:32]
@staticmethod