diff options
author | Justin Clark-Casey (justincc) | 2012-03-24 02:16:44 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-24 02:16:44 +0000 |
commit | cf61c74e90324e07cb4b15f9c597fef00c047c75 (patch) | |
tree | 25a16f21955b0766b045cc7e2115ff59c338140b /OpenSim/Framework/RegionInfo.cs | |
parent | Have the PhysicsParameters module output console command responses (diff) | |
download | opensim-SC_OLD-cf61c74e90324e07cb4b15f9c597fef00c047c75.zip opensim-SC_OLD-cf61c74e90324e07cb4b15f9c597fef00c047c75.tar.gz opensim-SC_OLD-cf61c74e90324e07cb4b15f9c597fef00c047c75.tar.bz2 opensim-SC_OLD-cf61c74e90324e07cb4b15f9c597fef00c047c75.tar.xz |
Give feedback when "terrain save-tile" is not successfully invoked.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index 5ba3863..a505524 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -421,12 +421,18 @@ namespace OpenSim.Framework | |||
421 | set { m_internalEndPoint = value; } | 421 | set { m_internalEndPoint = value; } |
422 | } | 422 | } |
423 | 423 | ||
424 | /// <summary> | ||
425 | /// The x co-ordinate of this region in map tiles (e.g. 1000). | ||
426 | /// </summary> | ||
424 | public uint RegionLocX | 427 | public uint RegionLocX |
425 | { | 428 | { |
426 | get { return m_regionLocX.Value; } | 429 | get { return m_regionLocX.Value; } |
427 | set { m_regionLocX = value; } | 430 | set { m_regionLocX = value; } |
428 | } | 431 | } |
429 | 432 | ||
433 | /// <summary> | ||
434 | /// The y co-ordinate of this region in map tiles (e.g. 1000). | ||
435 | /// </summary> | ||
430 | public uint RegionLocY | 436 | public uint RegionLocY |
431 | { | 437 | { |
432 | get { return m_regionLocY.Value; } | 438 | get { return m_regionLocY.Value; } |