* 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user