Merge branch 'master' of ssh://opensimulator.org/var/git/opensim into mysql-performance

0.6.9
John Hurliman 2010-02-06 01:05:58 -08:00
commit 5dc278b0d7
2 changed files with 18 additions and 18 deletions

View File

@ -358,18 +358,18 @@ namespace OpenSim.Region.CoreModules.Scripting.DynamicTexture
// tmptex.DefaultTexture.Fullbright = true; // tmptex.DefaultTexture.Fullbright = true;
part.UpdateTexture(tmptex); part.UpdateTexture(tmptex);
} }
if (oldID != UUID.Zero && ((Disp & DISP_EXPIRE) != 0)) if (oldID != UUID.Zero && ((Disp & DISP_EXPIRE) != 0))
{ {
if (oldAsset == null) oldAsset = scene.AssetService.Get(oldID.ToString()); if (oldAsset == null) oldAsset = scene.AssetService.Get(oldID.ToString());
if (oldAsset != null) if (oldAsset != null)
{ {
if (oldAsset.Temporary == true) if (oldAsset.Temporary == true)
{ {
scene.AssetService.Delete(oldID.ToString()); scene.AssetService.Delete(oldID.ToString());
} }
} }
} }
} }

View File

@ -436,12 +436,12 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Interregion
} }
OSDMap resp = new OSDMap(2); OSDMap resp = new OSDMap(2);
string reason = String.Empty; string reason = String.Empty;
uint teleportFlags = 0; uint teleportFlags = 0;
if (args.ContainsKey("teleport_flags")) if (args.ContainsKey("teleport_flags"))
{ {
teleportFlags = args["teleport_flags"].AsUInteger(); teleportFlags = args["teleport_flags"].AsUInteger();
} }
// This is the meaning of POST agent // This is the meaning of POST agent
m_regionClient.AdjustUserInformation(aCircuit); m_regionClient.AdjustUserInformation(aCircuit);