mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:27:28 +08:00
some more typos about wrong table for shapes
This commit is contained in:
@@ -324,11 +324,11 @@ namespace OpenSim.DataStore.MonoSqliteStorage
|
||||
|
||||
DataRow shapeRow = shapes.Rows.Find(prim.UUID);
|
||||
if (shapeRow == null) {
|
||||
shapeRow = prims.NewRow();
|
||||
shapeRow = shapes.NewRow();
|
||||
fillShapeRow(shapeRow, prim);
|
||||
prims.Rows.Add(shapeRow);
|
||||
shapes.Rows.Add(shapeRow);
|
||||
} else {
|
||||
fillPrimRow(shapeRow, prim);
|
||||
fillShapeRow(shapeRow, prim);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user