* Defaulting AgentManager.Movement.AutoResetControls to false since most non-interactive bots will expect this behavior. May break a few bots that expect movement flags to be reset every update!

* Fixed a crashing typo in TestClient ScriptCommand

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2225 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-09-15 23:37:35 +00:00
parent 805fb7c18d
commit 3ef7649a81
2 changed files with 5 additions and 7 deletions

View File

@@ -19,8 +19,8 @@ namespace OpenMetaverse.TestClient
return "Usage: script [filename]";
// Load the file
string[] lines = null;
try { File.ReadAllLines(args[0]); }
string[] lines;
try { lines = File.ReadAllLines(args[0]); }
catch (Exception e) { return e.Message; }
// Execute all of the commands