Prevent temp-on-rez prims from being persisted

avinationmerge
Melanie 2010-11-08 19:00:03 +01:00
parent df0787f5cf
commit 15da52d73a
1 changed files with 3 additions and 0 deletions

View File

@ -1553,6 +1553,9 @@ namespace OpenSim.Region.Framework.Scenes
return;
}
if ((RootPart.Flags & PrimFlags.TemporaryOnRez) != 0)
return;
// Since this is the top of the section of call stack for backing up a particular scene object, don't let
// any exception propogate upwards.
try