diff options
author | Sean Dague | 2008-09-09 20:45:21 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-09 20:45:21 +0000 |
commit | 6f15ec2d46de932c0f21e787d6322c160a957ff2 (patch) | |
tree | 4c524dadf69549e443e3110bae510a48fd6bf888 | |
parent | fix an automatically stripped out UUID from SQLiteManager (diff) | |
download | opensim-SC_OLD-6f15ec2d46de932c0f21e787d6322c160a957ff2.zip opensim-SC_OLD-6f15ec2d46de932c0f21e787d6322c160a957ff2.tar.gz opensim-SC_OLD-6f15ec2d46de932c0f21e787d6322c160a957ff2.tar.bz2 opensim-SC_OLD-6f15ec2d46de932c0f21e787d6322c160a957ff2.tar.xz |
possible fix for EARTH SHATTERING KABOOM! when trying to save a prim
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index a9bf5ef..2c2a7e4 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -212,7 +212,7 @@ namespace OpenSim.Data.SQLite | |||
212 | && (prim.GetEffectiveObjectFlags() & (uint)PrimFlags.TemporaryOnRez) == 0) | 212 | && (prim.GetEffectiveObjectFlags() & (uint)PrimFlags.TemporaryOnRez) == 0) |
213 | { | 213 | { |
214 | //m_log.Info("[REGION DB]: Adding obj: " + obj.UUID + " to region: " + regionUUID); | 214 | //m_log.Info("[REGION DB]: Adding obj: " + obj.UUID + " to region: " + regionUUID); |
215 | addPrim(prim, Util.ToRawUuidString(obj.UUID), Util.ToRawUuidString(regionUUID)); | 215 | addPrim(prim, obj.UUID, regionUUID); |
216 | } | 216 | } |
217 | else if (prim.Stopped) | 217 | else if (prim.Stopped) |
218 | { | 218 | { |