diff options
author | Adam Frisby | 2007-07-02 23:42:38 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-02 23:42:38 +0000 |
commit | 96dfb33bca20c44202a9c0dd6393d78fec53416f (patch) | |
tree | a9af1c9218746a568afa4f2b474d53ae493438fa /OpenSim/Region/Environment/ParcelManager.cs | |
parent | *OGS1 Key2Name/Name2Key works (diff) | |
download | opensim-SC_OLD-96dfb33bca20c44202a9c0dd6393d78fec53416f.zip opensim-SC_OLD-96dfb33bca20c44202a9c0dd6393d78fec53416f.tar.gz opensim-SC_OLD-96dfb33bca20c44202a9c0dd6393d78fec53416f.tar.bz2 opensim-SC_OLD-96dfb33bca20c44202a9c0dd6393d78fec53416f.tar.xz |
Attempted workaround for Mono's insistence on compiling BasicTerrain incorrectly
Diffstat (limited to 'OpenSim/Region/Environment/ParcelManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/ParcelManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/ParcelManager.cs b/OpenSim/Region/Environment/ParcelManager.cs index 1cab4ab..3afbe6e 100644 --- a/OpenSim/Region/Environment/ParcelManager.cs +++ b/OpenSim/Region/Environment/ParcelManager.cs | |||
@@ -682,8 +682,8 @@ namespace OpenSim.Region.Environment | |||
682 | } | 682 | } |
683 | } | 683 | } |
684 | } | 684 | } |
685 | parcelData.AABBMin = new LLVector3((float)(min_x * 4), (float)(min_y * 4), m_world.Terrain[(min_x * 4), (min_y * 4)]); | 685 | parcelData.AABBMin = new LLVector3((float)(min_x * 4), (float)(min_y * 4), (float)m_world.Terrain.get((min_x * 4), (min_y * 4))); |
686 | parcelData.AABBMax = new LLVector3((float)(max_x * 4), (float)(max_y * 4), m_world.Terrain[(max_x * 4), (max_y * 4)]); | 686 | parcelData.AABBMax = new LLVector3((float)(max_x * 4), (float)(max_y * 4), (float)m_world.Terrain.get((max_x * 4), (max_y * 4))); |
687 | parcelData.area = tempArea; | 687 | parcelData.area = tempArea; |
688 | } | 688 | } |
689 | 689 | ||