2008-07-21 21:12:59 +00:00
|
|
|
namespace OpenMetaverse.TestClient
|
2007-01-27 10:16:21 +00:00
|
|
|
{
|
|
|
|
|
public class DilationCommand : Command
|
|
|
|
|
{
|
|
|
|
|
public DilationCommand(TestClient testClient)
|
|
|
|
|
{
|
|
|
|
|
Name = "dilation";
|
|
|
|
|
Description = "Shows time dilation for current sim.";
|
2008-07-25 08:55:36 +00:00
|
|
|
Category = CommandCategory.Simulator;
|
2007-01-27 10:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
2008-07-25 05:15:05 +00:00
|
|
|
public override string Execute(string[] args, UUID fromAgentID)
|
2007-01-27 10:16:21 +00:00
|
|
|
{
|
2022-02-25 19:38:11 -06:00
|
|
|
return "Dilation is " + Client.Network.CurrentSim.Stats.Dilation;
|
2007-01-27 10:16:21 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|