aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-10-03 16:18:38 +0000
committerMelanie Thielker2008-10-03 16:18:38 +0000
commit1b2380db847513443a0641596e085757d0a77cb0 (patch)
tree1f8a48500ef26ac75bb206ee15494341f9800366 /OpenSim/Region/Environment/Scenes/Scene.cs
parent* refactor: make shutdown a template method in the same manner as startup, fo... (diff)
downloadopensim-SC_OLD-1b2380db847513443a0641596e085757d0a77cb0.zip
opensim-SC_OLD-1b2380db847513443a0641596e085757d0a77cb0.tar.gz
opensim-SC_OLD-1b2380db847513443a0641596e085757d0a77cb0.tar.bz2
opensim-SC_OLD-1b2380db847513443a0641596e085757d0a77cb0.tar.xz
Cause objects to be removed from the database when they go temp or get
attached. Also make sure that parcel prim counts get updated
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 2e28cca..5ab40cc 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -4215,5 +4215,10 @@ namespace OpenSim.Region.Environment.Scenes
4215 } 4215 }
4216 } 4216 }
4217 } 4217 }
4218
4219 public void DeleteFromStorage(UUID uuid)
4220 {
4221 m_storageManager.DataStore.RemoveObject(uuid, m_regInfo.RegionID);
4222 }
4218 } 4223 }
4219} 4224}