From 7db635a05b634bd16b15a8d505b6b66cc58d9fa6 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Sun, 1 Jan 2023 01:35:06 +0100 Subject: [PATCH] Change 'Managed' to 'External' in `[p]llset secured`'s output (#5944) --- redbot/cogs/audio/core/commands/llset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/cogs/audio/core/commands/llset.py b/redbot/cogs/audio/core/commands/llset.py index b5bfc9a51..0c9668091 100644 --- a/redbot/cogs/audio/core/commands/llset.py +++ b/redbot/cogs/audio/core/commands/llset.py @@ -278,7 +278,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Setting Changed"), description=_( - "Managed Lavalink node will now connect using the secured {secured_protocol} protocol.\n\n" + "External Lavalink node will now connect using the secured {secured_protocol} protocol.\n\n" "Run `{p}{cmd}` for it to take effect." ).format( p=ctx.prefix, @@ -291,7 +291,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass): ctx, title=_("Setting Changed"), description=_( - "Managed Lavalink node will no longer connect using the secured " + "External Lavalink node will no longer connect using the secured " "{secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n" "Run `{p}{cmd}` for it to take effect." ).format(p=ctx.prefix, cmd=self.command_audioset_restart.qualified_name),