LIBOMV-630: @ command should tell, if a bot is offline

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2995 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Latif Khalifa
2009-07-16 18:26:02 +00:00
parent a7833b138f
commit 0ad625b480

View File

@@ -255,7 +255,7 @@ namespace OpenMetaverse.TestClient
bool found = false;
onlyAvatar = tokens[1]+" "+tokens[2];
foreach (TestClient client in Clients.Values) {
if (client.ToString() == onlyAvatar) {
if ((client.ToString() == onlyAvatar) && (client.Network.Connected)) {
found = true;
break;
}