From 6ef9d4da901a346c232458317cca6268da888e2e Mon Sep 17 00:00:00 2001
From: Jeff Ames
Date: Mon, 18 Aug 2008 00:39:10 +0000
Subject: Formatting cleanup.
---
OpenSim/Tools/pCampBot/BotManager.cs | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
(limited to 'OpenSim/Tools/pCampBot/BotManager.cs')
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs
index 302dc08..4bdc494 100644
--- a/OpenSim/Tools/pCampBot/BotManager.cs
+++ b/OpenSim/Tools/pCampBot/BotManager.cs
@@ -51,7 +51,7 @@ namespace pCampBot
protected Random somthing = new Random(Environment.TickCount);
protected int numbots = 0;
protected IConfig Previous_config;
-
+
///
/// Constructor Creates MainConsole.Instance to take commands and provide the place to write data
///
@@ -96,7 +96,7 @@ namespace pCampBot
startupBot(i, Previous_config);
}
}
-
+
///
/// This starts up the bot and stores the thread for the bot in the thread array
///
@@ -127,7 +127,7 @@ namespace pCampBot
{
string returnstring = "";
string chars = "abcdefghijklmnopqrstuvwxyz0123456789";
-
+
for (int i = 0; i < 7; i++)
{
returnstring += chars.Substring(somthing.Next(chars.Length),1);
@@ -177,7 +177,7 @@ namespace pCampBot
{
return new ConsoleBase("Region", this);
}
-
+
///
/// Command runnint tool.. Currently use it to add bots, shutdown and (dangerous)Forcequit
///
@@ -198,7 +198,7 @@ namespace pCampBot
case "addbots":
int newbots;
Helpers.TryParse(cmdparams[0], out newbots);
-
+
if (newbots > 0)
addbots(newbots);
break;
--
cgit v1.1