use correct table name for shapes

afrisby
Sean Dague 2007-08-09 19:52:02 +00:00
parent 765bd02a48
commit 88496505b1
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ namespace OpenSim.DataStore.MonoSqliteStorage
private void addPrim(SceneObjectPart prim)
{
DataTable prims = ds.Tables["prims"];
DataTable shapes = ds.Tables["shapes"];
DataTable shapes = ds.Tables["primshapes"];
DataRow primRow = prims.Rows.Find(prim.UUID);
if (primRow == null) {