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