fix(tempvoice): prefix generated channel names for clearer voice-channel context
This commit is contained in:
@@ -57,6 +57,9 @@ class TempVoice(commands.Cog):
|
|||||||
name = name.strip(" .")
|
name = name.strip(" .")
|
||||||
if not name:
|
if not name:
|
||||||
name = "user-{}".format(fallback_id)
|
name = "user-{}".format(fallback_id)
|
||||||
|
|
||||||
|
# Prefix generated channel names for clearer voice-channel context.
|
||||||
|
name = "🔊 {}".format(name)
|
||||||
return name[:32]
|
return name[:32]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|||||||
Reference in New Issue
Block a user