* Removed the poorly done GetType function from _Packets_.cs

* Housecleaning in FriendsManager
* Make sure LLSDString is never holding a null pointer
* Changes to Login.cs to prepare for the LLSD switch (it is not happening yet!)
* Fixed LLSD export for prims to export light/flex/sculpt data as well, importing that back in is still a TODO

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1540 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2007-12-21 02:25:36 +00:00
parent bb21d0e11a
commit 9f8e97f13b
14 changed files with 556 additions and 634 deletions

View File

@@ -27,7 +27,6 @@ namespace libsecondlife.TestClient
string masterName = String.Empty;
LLUUID masterKey = LLUUID.Zero;
string file = String.Empty;
string contact = String.Empty;
string loginuri = String.Empty;
try
@@ -42,15 +41,6 @@ namespace libsecondlife.TestClient
masterName = arguments["master"];
}
if (arguments["contact"] != null)
{
contact = arguments["contact"];
}
else
{
contact = "anonymous";
}
if (arguments["loginuri"] != null)
{
loginuri = arguments["loginuri"];
@@ -139,11 +129,11 @@ namespace libsecondlife.TestClient
// Login the accounts and run the input loop
if (arguments["startpos"] != null)
{
manager = new ClientManager(accounts, contact, arguments["startpos"]);
manager = new ClientManager(accounts, arguments["startpos"]);
}
else
{
manager = new ClientManager(accounts, contact);
manager = new ClientManager(accounts);
}
manager.Run();