Fix a regression that caused the region settings not to save. Still no SQLite support for region settings. MySQL now functional.0.6.0-stable
parent
ff0644a104
commit
5998fb712a
|
@ -735,6 +735,7 @@ namespace OpenSim.Data.MySQL
|
|||
{
|
||||
RegionSettings rs = new RegionSettings();
|
||||
rs.RegionUUID = regionUUID;
|
||||
rs.OnSave += StoreRegionSettings;
|
||||
|
||||
StoreRegionSettings(rs);
|
||||
|
||||
|
|
|
@ -120,6 +120,9 @@ namespace OpenSim.Region.Environment.Modules.World.Estate
|
|||
|
||||
public void setEstateTerrainBaseTexture(IClientAPI remoteClient, int corner, LLUUID texture)
|
||||
{
|
||||
if(texture == LLUUID.Zero)
|
||||
return;
|
||||
|
||||
switch (corner)
|
||||
{
|
||||
case 0:
|
||||
|
|
Loading…
Reference in New Issue