Easy returns

This commit is contained in:
Cinder Roxley
2024-07-01 12:17:07 -05:00
parent 9df9e2d0ba
commit 6ee065573e
19 changed files with 41 additions and 168 deletions

View File

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