From 39fc4daefde2eba22a84365130ee82d1a6c917c2 Mon Sep 17 00:00:00 2001 From: lancej Date: Tue, 14 Nov 2006 19:48:10 +0000 Subject: [PATCH] * Fixed TestBot git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@587 52acb1d6-8a22-11de-b505-999d5b087335 --- applications/TestBot/TestBot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/TestBot/TestBot.cs b/applications/TestBot/TestBot.cs index 0eb09782..3cc07b97 100644 --- a/applications/TestBot/TestBot.cs +++ b/applications/TestBot/TestBot.cs @@ -95,7 +95,7 @@ namespace TestBot { string[] args = new string[tokens.Length - 1]; Array.Copy(tokens, 1, args, 0, args.Length); - response = commands[tokens[0]].Invoke(args); + response = commands[tokens[0]](args); } else {