22 lines
517 B
C#
22 lines
517 B
C#
namespace OpenMetaverse.TestClient
|
|
{
|
|
public class GoHomeCommand : Command
|
|
{
|
|
public GoHomeCommand(TestClient testClient)
|
|
{
|
|
Name = "gohome";
|
|
Description = "Teleports home";
|
|
Category = CommandCategory.Movement;
|
|
}
|
|
|
|
public override string Execute(string[] args, UUID fromAgentID)
|
|
{
|
|
if ( Client.Self.GoHome() ) {
|
|
return "Teleport Home Succesful";
|
|
} else {
|
|
return "Teleport Home Failed";
|
|
}
|
|
}
|
|
}
|
|
}
|