If a prim is persisted in the region, scripts dragged into its inventory after a server restart would not appear (though the script they contain would still be invoked). This

change fixes that problem.
This commit is contained in:
Justin Clarke Casey
2007-12-26 20:21:06 +00:00
parent f852b64555
commit 01de4bbfbd
3 changed files with 15 additions and 5 deletions

View File

@@ -1152,6 +1152,13 @@ namespace OpenSim.Region.Environment.Scenes
{
return part.GetInventoryFileName(remoteClient, localID);
}
else
{
MainLog.Instance.Warn(
"SCENE",
"Couldn't find part {0} in object group {1} ({2}) to retreive prim inventory",
localID, LocalId, UUID);
}
return false;
}