Thank you Dan Lake, for patches to TestClient:

* Login command now supports starting location
* Added comment character for script files (either ; or # may be used as first non-whitespace on a line)
* Shout and whisper commands no longer encode extra whitespace to end of messages
* Modified say command to the same format as whisper and shout commands

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2438 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2009-02-17 18:29:00 +00:00
parent cd2b4d6deb
commit 471c99e458
4 changed files with 40 additions and 16 deletions

View File

@@ -39,7 +39,10 @@ namespace OpenMetaverse.TestClient
for (int i = startIndex; i < args.Length; i++)
{
message += args[i] + " ";
// Append a space before the next arg
if( i > 0 )
message += " ";
message += args[i];
}
Client.Self.Chat(message, channel, ChatType.Shout);