2008-07-21 21:12:59 +00:00
|
|
|
namespace OpenMetaverse.TestClient
|
2007-05-21 04:30:31 +00:00
|
|
|
{
|
|
|
|
|
public class SetHomeCommand : Command
|
|
|
|
|
{
|
|
|
|
|
public SetHomeCommand(TestClient testClient)
|
|
|
|
|
{
|
|
|
|
|
Name = "sethome";
|
2008-07-25 08:55:36 +00:00
|
|
|
Description = "Sets home to the current location.";
|
|
|
|
|
Category = CommandCategory.Movement;
|
2007-05-21 04:30:31 +00:00
|
|
|
}
|
|
|
|
|
|
2008-07-25 05:15:05 +00:00
|
|
|
public override string Execute(string[] args, UUID fromAgentID)
|
2007-05-21 04:30:31 +00:00
|
|
|
{
|
|
|
|
|
Client.Self.SetHome();
|
|
|
|
|
return "Home Set";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|