mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
Check database for root prim IDs only to try and get a handle on prim loss
once and for all.
This commit is contained in:
@@ -2028,7 +2028,7 @@ namespace OpenSim.Data.MySQL
|
||||
|
||||
using (MySqlCommand cmd = dbcon.CreateCommand())
|
||||
{
|
||||
cmd.CommandText = "select UUID from prims where RegionUUID = ?RegionUUID";
|
||||
cmd.CommandText = "select UUID from prims where RegionUUID = ?RegionUUID and SceneGroupID = UUID";
|
||||
cmd.Parameters.AddWithValue("RegionUUID", regionID.ToString());
|
||||
|
||||
using (IDataReader reader = ExecuteReader(cmd))
|
||||
|
||||
Reference in New Issue
Block a user