diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/TestSuite/Main.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/TestSuite/Main.cs b/OpenSim/TestSuite/Main.cs index 1a9aa0e..b944304 100644 --- a/OpenSim/TestSuite/Main.cs +++ b/OpenSim/TestSuite/Main.cs | |||
@@ -33,7 +33,7 @@ namespace OpenSim.TestSuite | |||
33 | /// <summary> | 33 | /// <summary> |
34 | /// Event Types from the BOT. Add new events here | 34 | /// Event Types from the BOT. Add new events here |
35 | /// </summary> | 35 | /// </summary> |
36 | public enum EventType:int | 36 | public enum EventType : int |
37 | { | 37 | { |
38 | NONE = 0, | 38 | NONE = 0, |
39 | CONNECTED = 1, | 39 | CONNECTED = 1, |
@@ -84,15 +84,15 @@ namespace OpenSim.TestSuite | |||
84 | private static void Help() | 84 | private static void Help() |
85 | { | 85 | { |
86 | Console.WriteLine( | 86 | Console.WriteLine( |
87 | "usage: pCampBot <-loginuri loginuri> [OPTIONS]\n" + | 87 | "usage: pCampBot <-loginuri loginuri> [OPTIONS]\n" + |
88 | "Spawns a set of bots to test an OpenSim region\n\n" + | 88 | "Spawns a set of bots to test an OpenSim region\n\n" + |
89 | " -l, -loginuri loginuri for sim to log into (required)\n" + | 89 | " -l, -loginuri loginuri for sim to log into (required)\n" + |
90 | // TODO: unused: " -n, -botcount number of bots to start (default: 1)\n" + | 90 | // TODO: unused: " -n, -botcount number of bots to start (default: 1)\n" + |
91 | " -firstname first name for the bot(s) (default: random string)\n" + | 91 | " -firstname first name for the bot(s) (default: random string)\n" + |
92 | " -lastname lastname for the bot(s) (default: random string)\n" + | 92 | " -lastname lastname for the bot(s) (default: random string)\n" + |
93 | " -password password for the bots(s) (default: random string)\n" + | 93 | " -password password for the bots(s) (default: random string)\n" + |
94 | " -h, -help show this message" | 94 | " -h, -help show this message" |
95 | ); | 95 | ); |
96 | } | 96 | } |
97 | } | 97 | } |
98 | } | 98 | } |