aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/TestSuite/BotManager.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/TestSuite/BotManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/TestSuite/BotManager.cs b/OpenSim/TestSuite/BotManager.cs
index 29864ab..7039b0f 100644
--- a/OpenSim/TestSuite/BotManager.cs
+++ b/OpenSim/TestSuite/BotManager.cs
@@ -29,7 +29,7 @@ using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Reflection; 30using System.Reflection;
31using System.Threading; 31using System.Threading;
32using libsecondlife; 32using OpenMetaverse;
33using log4net; 33using log4net;
34using Nini.Config; 34using Nini.Config;
35using OpenSim.Framework; 35using OpenSim.Framework;
@@ -198,7 +198,7 @@ namespace OpenSim.TestSuite
198 break; 198 break;
199 case "addbots": 199 case "addbots":
200 int newbots; 200 int newbots;
201 Helpers.TryParse(cmdparams[0], out newbots); 201 Int32.TryParse(cmdparams[0], out newbots);
202 202
203 if (newbots > 0) 203 if (newbots > 0)
204 addbots(newbots); 204 addbots(newbots);