diff options
author | Robert Adams | 2013-12-14 07:53:01 -0800 |
---|---|---|
committer | Robert Adams | 2013-12-14 07:53:01 -0800 |
commit | 13a9a4b653c5470e6a450bfd9b2049273a4ef7b2 (patch) | |
tree | 1168d93ebfff04893ec05a32c6bad456e1d00d32 /OpenSim/Region/ClientStack/Linden/UDP | |
parent | Merge branch 'master' into varregion (diff) | |
download | opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.zip opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.tar.gz opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.tar.bz2 opensim-SC_OLD-13a9a4b653c5470e6a450bfd9b2049273a4ef7b2.tar.xz |
varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.
Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z.
This keeps the downward compatibility and follows the scheme of 'region'
and 'world' location naming that is happening in the Util module.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index a9ae71c..c250787 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -2885,8 +2885,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2885 | { | 2885 | { |
2886 | pos = (land.AABBMax + land.AABBMin) * 0.5f; | 2886 | pos = (land.AABBMax + land.AABBMin) * 0.5f; |
2887 | } | 2887 | } |
2888 | reply.Data.GlobalX = info.LegacyRegionLocX + x; | 2888 | reply.Data.GlobalX = info.RegionLocX + x; |
2889 | reply.Data.GlobalY = info.LegacyRegionLocY + y; | 2889 | reply.Data.GlobalY = info.RegionLocY + y; |
2890 | reply.Data.GlobalZ = pos.Z; | 2890 | reply.Data.GlobalZ = pos.Z; |
2891 | reply.Data.SimName = Utils.StringToBytes(info.RegionName); | 2891 | reply.Data.SimName = Utils.StringToBytes(info.RegionName); |
2892 | reply.Data.SnapshotID = land.SnapshotID; | 2892 | reply.Data.SnapshotID = land.SnapshotID; |