mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
- cleaning up LandData/ILandObject capitalization issues
- adding LandDataSerializer to OAR mechanics
This commit is contained in:
@@ -48,14 +48,14 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return GetLO().landData.Name; }
|
||||
set { GetLO().landData.Name = value; }
|
||||
get { return GetLO().LandData.Name; }
|
||||
set { GetLO().LandData.Name = value; }
|
||||
}
|
||||
|
||||
public string Description
|
||||
{
|
||||
get { return GetLO().landData.Description; }
|
||||
set { GetLO().landData.Description = value; }
|
||||
get { return GetLO().LandData.Description; }
|
||||
set { GetLO().LandData.Description = value; }
|
||||
}
|
||||
|
||||
public ISocialEntity Owner
|
||||
@@ -66,7 +66,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||
|
||||
public bool[,] Bitmap
|
||||
{
|
||||
get { return GetLO().landBitmap; }
|
||||
get { return GetLO().LandBitmap; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -191,7 +191,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||
|
||||
foreach (ILandObject landObject in m_los)
|
||||
{
|
||||
m_parcels.Add(new LOParcel(m_internalScene, landObject.landData.LocalID));
|
||||
m_parcels.Add(new LOParcel(m_internalScene, landObject.LandData.LocalID));
|
||||
}
|
||||
|
||||
return m_parcels.ToArray();
|
||||
|
||||
Reference in New Issue
Block a user