Minor change in test client FollowCommand

This commit is contained in:
Cinder
2021-09-11 09:25:40 -05:00
parent 93bfac58da
commit 576f8a49d6

View File

@@ -36,10 +36,11 @@ namespace OpenMetaverse.TestClient
}
else
{
if (Follow(target))
return "Following " + target;
else
return "Unable to follow " + target + ". Client may not be able to see that avatar.";
if (Follow(target)) {
return $"Following {target}.";
} else {
return $"Unable to follow {target}. Client may not be able to see the target avatar.";
}
}
}