minor: Increase size of parcel name field in "land show" console command output. Construct table using CDT rather than string formats

This commit is contained in:
Justin Clark-Casey (justincc)
2014-03-06 00:40:24 +00:00
parent 14569992e1
commit aa2fb1ec25
2 changed files with 18 additions and 13 deletions

View File

@@ -35,9 +35,14 @@ namespace OpenSim.Framework.Console
public static class ConsoleDisplayUtil
{
public const int CoordTupleSize = 11;
public const int EstateNameSize = 20;
public const int PortSize = 5;
public const int EstateNameSize = 20;
public const int ParcelNameSize = 40;
public const int RegionNameSize = 20;
public const int UserNameSize = 35;
public const int UuidSize = 36;
public const int VectorSize = 15;
}
}