aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 259e1ba..e7c8ef9 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -774,10 +774,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
774 MainConsole.Instance.Commands.AddCommand( 774 MainConsole.Instance.Commands.AddCommand(
775 "Debug", 775 "Debug",
776 false, 776 false,
777 "debug lludp throttle status", 777 "debug lludp throttle get",
778 "debug lludp throttle status <avatar-first-name> <avatar-last-name>", 778 "debug lludp throttle get <avatar-first-name> <avatar-last-name>",
779 "Return status information about throttles.", 779 "Return debug settings for throttles.",
780 HandleThrottleStatusCommand); 780 HandleThrottleGetCommand);
781 781
782 MainConsole.Instance.Commands.AddCommand( 782 MainConsole.Instance.Commands.AddCommand(
783 "Debug", 783 "Debug",
@@ -899,14 +899,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
899 } 899 }
900 } 900 }
901 901
902 private void HandleThrottleStatusCommand(string module, string[] args) 902 private void HandleThrottleGetCommand(string module, string[] args)
903 { 903 {
904 if (SceneManager.Instance.CurrentScene != null && SceneManager.Instance.CurrentScene != Scene) 904 if (SceneManager.Instance.CurrentScene != null && SceneManager.Instance.CurrentScene != Scene)
905 return; 905 return;
906 906
907 if (args.Length != 6) 907 if (args.Length != 6)
908 { 908 {
909 MainConsole.Instance.OutputFormat("Usage: debug lludp throttle status <avatar-first-name> <avatar-last-name>"); 909 MainConsole.Instance.OutputFormat("Usage: debug lludp throttle get <avatar-first-name> <avatar-last-name>");
910 return; 910 return;
911 } 911 }
912 912