From 64a98c736848de6099254f23483058668273c1a5 Mon Sep 17 00:00:00 2001 From: gareth Date: Mon, 14 May 2007 03:13:47 +0000 Subject: Finished off adding the new management API to gridserver Updated VersionInfo.cs finally Updated prebuild and rebuilt nant build files Completed Management agent basics --- ExportBot/Commands/PrimCountCommand.cs | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 ExportBot/Commands/PrimCountCommand.cs (limited to 'ExportBot/Commands/PrimCountCommand.cs') diff --git a/ExportBot/Commands/PrimCountCommand.cs b/ExportBot/Commands/PrimCountCommand.cs deleted file mode 100644 index 8adc563..0000000 --- a/ExportBot/Commands/PrimCountCommand.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using libsecondlife; -using libsecondlife.Packets; - -namespace libsecondlife.TestClient -{ - public class PrimCountCommand: Command - { - public PrimCountCommand(TestClient testClient) - { - Name = "primcount"; - Description = "Shows the number of prims that have been received."; - } - - public override string Execute(string[] args, LLUUID fromAgentID) - { - int count = 0; - - lock (Client.SimPrims) - { - foreach (Dictionary prims in Client.SimPrims.Values) - { - count += prims.Count; - } - } - - return count.ToString(); - } - } -} -- cgit v1.1