diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs index 20ae1887fd..59c204285a 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs @@ -129,8 +129,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP m_console.Commands.AddCommand( "Debug", false, - "debug lludp throttle log", - "debug lludp throttle log [ ]", + "debug lludp throttles log", + "debug lludp throttles log [ ]", "Change debug logging level for throttles.", "If level >= 0 then throttle debug logging is performed.\n" + "If level <= 0 then no throttle debug logging is performed.", @@ -139,16 +139,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP m_console.Commands.AddCommand( "Debug", false, - "debug lludp throttle get", - "debug lludp throttle get [ ]", + "debug lludp throttles get", + "debug lludp throttles get [ ]", "Return debug settings for throttles.", HandleThrottleGetCommand); m_console.Commands.AddCommand( "Debug", false, - "debug lludp throttle set", - "debug lludp throttle set [ ]", + "debug lludp throttles set", + "debug lludp throttles set [ ]", "Set a throttle parameter for the given client.", "Only current setting is 'adaptive' which must be 'true' or 'false'", HandleThrottleSetCommand); @@ -279,7 +279,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (!all && !one) { MainConsole.Instance.OutputFormat( - "Usage: debug lludp throttle log [ ]"); + "Usage: debug lludp throttles log [ ]"); return; } @@ -320,7 +320,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (!all && !one) { MainConsole.Instance.OutputFormat( - "Usage: debug lludp throttle set [ ]"); + "Usage: debug lludp throttles set [ ]"); return; } @@ -370,7 +370,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (!all && !one) { MainConsole.Instance.OutputFormat( - "Usage: debug lludp throttle get [ ]"); + "Usage: debug lludp throttles get [ ]"); return; }