2008-07-21 21:12:59 +00:00
|
|
|
namespace OpenMetaverse.TestClient
|
2007-04-28 20:54:02 +00:00
|
|
|
{
|
|
|
|
|
public class StandCommand: Command
|
|
|
|
|
{
|
|
|
|
|
public StandCommand(TestClient testClient)
|
|
|
|
|
{
|
|
|
|
|
Name = "stand";
|
|
|
|
|
Description = "Stand";
|
2008-07-25 08:55:36 +00:00
|
|
|
Category = CommandCategory.Movement;
|
2007-04-28 20:54:02 +00:00
|
|
|
}
|
|
|
|
|
|
2008-07-25 05:15:05 +00:00
|
|
|
public override string Execute(string[] args, UUID fromAgentID)
|
2007-08-10 20:16:19 +00:00
|
|
|
{
|
|
|
|
|
Client.Self.Stand();
|
|
|
|
|
return "Standing up.";
|
|
|
|
|
}
|
2007-04-28 20:54:02 +00:00
|
|
|
}
|
|
|
|
|
}
|