diff options
author | dr scofield (aka dirk husemann) | 2009-10-02 11:10:52 +0200 |
---|---|---|
committer | dr scofield (aka dirk husemann) | 2009-10-02 11:31:30 +0200 |
commit | 2107b67f1b145f7718fdb1450be1a7b8dd1a0bf7 (patch) | |
tree | 74913862b829b7e56994f2c33ca5fe35638baad1 /OpenSim/Region/OptionalModules/Scripting/Minimodule | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-2107b67f1b145f7718fdb1450be1a7b8dd1a0bf7.zip opensim-SC_OLD-2107b67f1b145f7718fdb1450be1a7b8dd1a0bf7.tar.gz opensim-SC_OLD-2107b67f1b145f7718fdb1450be1a7b8dd1a0bf7.tar.bz2 opensim-SC_OLD-2107b67f1b145f7718fdb1450be1a7b8dd1a0bf7.tar.xz |
- cleaning up LandData/ILandObject capitalization issues
- adding LandDataSerializer to OAR mechanics
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/LOParcel.cs | 10 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/LOParcel.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/LOParcel.cs index 37c7434..8df020f 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/LOParcel.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/LOParcel.cs | |||
@@ -48,14 +48,14 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
48 | 48 | ||
49 | public string Name | 49 | public string Name |
50 | { | 50 | { |
51 | get { return GetLO().landData.Name; } | 51 | get { return GetLO().LandData.Name; } |
52 | set { GetLO().landData.Name = value; } | 52 | set { GetLO().LandData.Name = value; } |
53 | } | 53 | } |
54 | 54 | ||
55 | public string Description | 55 | public string Description |
56 | { | 56 | { |
57 | get { return GetLO().landData.Description; } | 57 | get { return GetLO().LandData.Description; } |
58 | set { GetLO().landData.Description = value; } | 58 | set { GetLO().LandData.Description = value; } |
59 | } | 59 | } |
60 | 60 | ||
61 | public ISocialEntity Owner | 61 | public ISocialEntity Owner |
@@ -66,7 +66,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
66 | 66 | ||
67 | public bool[,] Bitmap | 67 | public bool[,] Bitmap |
68 | { | 68 | { |
69 | get { return GetLO().landBitmap; } | 69 | get { return GetLO().LandBitmap; } |
70 | } | 70 | } |
71 | } | 71 | } |
72 | } | 72 | } |
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs index da5ea0d..6fcb5d0 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs | |||
@@ -191,7 +191,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
191 | 191 | ||
192 | foreach (ILandObject landObject in m_los) | 192 | foreach (ILandObject landObject in m_los) |
193 | { | 193 | { |
194 | m_parcels.Add(new LOParcel(m_internalScene, landObject.landData.LocalID)); | 194 | m_parcels.Add(new LOParcel(m_internalScene, landObject.LandData.LocalID)); |
195 | } | 195 | } |
196 | 196 | ||
197 | return m_parcels.ToArray(); | 197 | return m_parcels.ToArray(); |