From ce99ebcab7a1a19972143c6fd86379bf114047a4 Mon Sep 17 00:00:00 2001 From: Date: Tue, 28 Oct 2008 18:36:29 +0000 Subject: [PATCH] Fixed TestClient JumpCommand.cs to work with previous commit git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2315 52acb1d6-8a22-11de-b505-999d5b087335 --- Programs/examples/TestClient/Commands/Movement/JumpCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Programs/examples/TestClient/Commands/Movement/JumpCommand.cs b/Programs/examples/TestClient/Commands/Movement/JumpCommand.cs index c44d1557..ba8526e9 100644 --- a/Programs/examples/TestClient/Commands/Movement/JumpCommand.cs +++ b/Programs/examples/TestClient/Commands/Movement/JumpCommand.cs @@ -14,7 +14,7 @@ namespace OpenMetaverse.TestClient public override string Execute(string[] args, UUID fromAgentID) { - Client.Self.Jump(); + Client.Self.Jump(true); return "Jumped"; } }