Add the name of a deleted object to the console output

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2012-01-31 22:22:32 +00:00
parent 717942e81b
commit eb49c356e2
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
foreach (SceneObjectGroup g in deletes)
{
m_console.OutputFormat("Deleting object {0}", g.UUID);
m_console.OutputFormat("Deleting object {0} {1}", g.UUID, g.Name);
m_scene.DeleteSceneObject(g, false);
}
}