17 lines
490 B
C#
17 lines
490 B
C#
namespace OpenMetaverse.TestClient
|
|
{
|
|
public class DilationCommand : Command
|
|
{
|
|
public DilationCommand(TestClient testClient)
|
|
{
|
|
Name = "dilation";
|
|
Description = "Shows time dilation for current sim.";
|
|
Category = CommandCategory.Simulator;
|
|
}
|
|
|
|
public override string Execute(string[] args, UUID fromAgentID)
|
|
{
|
|
return "Dilation is " + Client.Network.CurrentSim.Stats.Dilation.ToString();
|
|
}
|
|
}
|
|
} |