diff options
Diffstat (limited to 'OpenSim/OpenSim.Region/ParcelManager.cs')
-rw-r--r-- | OpenSim/OpenSim.Region/ParcelManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/OpenSim.Region/ParcelManager.cs b/OpenSim/OpenSim.Region/ParcelManager.cs index 37dd24f..081f9a2 100644 --- a/OpenSim/OpenSim.Region/ParcelManager.cs +++ b/OpenSim/OpenSim.Region/ParcelManager.cs | |||
@@ -74,13 +74,13 @@ namespace OpenSim.Region | |||
74 | private int lastParcelLocalID = START_PARCEL_LOCAL_ID - 1; | 74 | private int lastParcelLocalID = START_PARCEL_LOCAL_ID - 1; |
75 | private int[,] parcelIDList = new int[64, 64]; | 75 | private int[,] parcelIDList = new int[64, 64]; |
76 | 76 | ||
77 | private World m_world; | 77 | private Scene m_world; |
78 | private RegionInfo m_regInfo; | 78 | private RegionInfo m_regInfo; |
79 | 79 | ||
80 | #endregion | 80 | #endregion |
81 | 81 | ||
82 | #region Constructors | 82 | #region Constructors |
83 | public ParcelManager(World world, RegionInfo reginfo) | 83 | public ParcelManager(Scene world, RegionInfo reginfo) |
84 | { | 84 | { |
85 | 85 | ||
86 | m_world = world; | 86 | m_world = world; |
@@ -497,7 +497,7 @@ namespace OpenSim.Region | |||
497 | { | 497 | { |
498 | #region Member Variables | 498 | #region Member Variables |
499 | public ParcelData parcelData = new ParcelData(); | 499 | public ParcelData parcelData = new ParcelData(); |
500 | public World m_world; | 500 | public Scene m_world; |
501 | 501 | ||
502 | private bool[,] parcelBitmap = new bool[64, 64]; | 502 | private bool[,] parcelBitmap = new bool[64, 64]; |
503 | 503 | ||
@@ -505,7 +505,7 @@ namespace OpenSim.Region | |||
505 | 505 | ||
506 | 506 | ||
507 | #region Constructors | 507 | #region Constructors |
508 | public Parcel(LLUUID owner_id, bool is_group_owned, World world) | 508 | public Parcel(LLUUID owner_id, bool is_group_owned, Scene world) |
509 | { | 509 | { |
510 | m_world = world; | 510 | m_world = world; |
511 | parcelData.ownerID = owner_id; | 511 | parcelData.ownerID = owner_id; |