Added Simulator.Dilation, and corresponding dilation command in testclient

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@911 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
jef
2007-01-27 10:16:21 +00:00
parent 76fdbc7f80
commit 928660b958
6 changed files with 51 additions and 23 deletions

View File

@@ -23,7 +23,6 @@ namespace libsecondlife.TestClient
LoginDetails account;
string master = "";
string file = "";
string startpos = "";
string contact = "";
if (arguments["master"] != null)
@@ -31,10 +30,6 @@ namespace libsecondlife.TestClient
master = arguments["master"];
}
if ( arguments["start"] != null)
{
startpos = arguments["start"];
}
if (arguments["contact"] != null)
{
contact = arguments["contact"];
@@ -112,8 +107,8 @@ namespace libsecondlife.TestClient
a.Master = master;
// Login the accounts and run the input loop
if ( startpos != null ) {
manager = new ClientManager(accounts, contact, startpos);
if ( arguments["start"] != null ) {
manager = new ClientManager(accounts, contact, arguments["start"]);
} else {
manager = new ClientManager(accounts, contact);
}