Fix r2959 - last letter was being sliced off region prim renames

ThreadPoolClientBranch
Justin Clarke Casey 2008-01-10 01:39:49 +00:00
parent 3ab0007d3e
commit b0904f471d
1 changed files with 2 additions and 2 deletions

View File

@ -1074,12 +1074,12 @@ namespace OpenSim.Region.Environment.Scenes
}
/// <summary>
///
/// Set the name of a prim
/// </summary>
/// <param name="name"></param>
/// <param name="localID"></param>
public void SetPartName(string name, uint localID)
{
name = name.Remove(name.Length - 1, 1);
SceneObjectPart part = GetChildPart(localID);
if (part != null)
{