*Added support for Subdivision (use master avatar to login to try out)
*Added Parcel Border support
*Enabled user account storage, but only when a new account is created

Bug Fixes:
*Fixed crash on startup while in sandbox when "Setting up master avatar"
*Fixed most core functions in ParcelManager and Parcel that where broken
*Fixed Parcel saving to database

Known Issues:
*Dividing parcel fails in viewer (gives an error about needing 2 parcels)
This commit is contained in:
mingchen
2007-06-06 03:00:59 +00:00
parent bc380ccba6
commit ea79819575
11 changed files with 169 additions and 79 deletions

View File

@@ -189,7 +189,8 @@ namespace OpenSim.Storage.LocalStorageDb4o
int i;
for (i = 0; i < parcel_data.GetLength(0); i++)
{
MainConsole.Instance.Notice("Adding : " + i);
MainConsole.Instance.Notice("Adding : " + i + " - SAMPLE: " + parcel_data[i].parcelBitmapByteArray[0]);
db.Set(parcel_data[i]);
}
@@ -206,6 +207,7 @@ namespace OpenSim.Storage.LocalStorageDb4o
MainConsole.Instance.Notice("Parcel Backup: Parcels exist in database.");
foreach (ParcelData parcelData in result)
{
recv.ParcelFromStorage(parcelData);
}
}