aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Objects/Commands
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-10-18 23:02:57 +0100
committerJustin Clark-Casey (justincc)2012-10-18 23:02:57 +0100
commita960273e91e43eedbab923539d817b81c0e50dbd (patch)
treee8b9dafd855bcbf780d0d3ce97dfa1802c4edb83 /OpenSim/Region/CoreModules/World/Objects/Commands
parentIf we're avoiding printing a long request warning for a GetTexture CAP call, ... (diff)
downloadopensim-SC_OLD-a960273e91e43eedbab923539d817b81c0e50dbd.zip
opensim-SC_OLD-a960273e91e43eedbab923539d817b81c0e50dbd.tar.gz
opensim-SC_OLD-a960273e91e43eedbab923539d817b81c0e50dbd.tar.bz2
opensim-SC_OLD-a960273e91e43eedbab923539d817b81c0e50dbd.tar.xz
Add number of inventory items to information displayed via "show part" console command
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Objects/Commands')
-rw-r--r--OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs
index 7a35182..5d0163a 100644
--- a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs
+++ b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs
@@ -456,6 +456,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
456 sb.AppendFormat("Parent: {0}", 456 sb.AppendFormat("Parent: {0}",
457 sop.IsRoot ? "Is Root\n" : string.Format("{0} {1}\n", sop.ParentGroup.Name, sop.ParentGroup.UUID)); 457 sop.IsRoot ? "Is Root\n" : string.Format("{0} {1}\n", sop.ParentGroup.Name, sop.ParentGroup.UUID));
458 sb.AppendFormat("Link number: {0}\n", sop.LinkNum); 458 sb.AppendFormat("Link number: {0}\n", sop.LinkNum);
459 sb.AppendFormat("Items: {0}\n", sop.Inventory.Count);
459 sb.AppendFormat("Flags: {0}\n", sop.Flags); 460 sb.AppendFormat("Flags: {0}\n", sop.Flags);
460 461
461 return sb; 462 return sb;