diff options
author | Melanie | 2012-01-24 01:29:50 +0000 |
---|---|---|
committer | Melanie | 2012-01-24 01:29:50 +0000 |
commit | 696fbdfa24595fef5c26f5d3a297465ff765058b (patch) | |
tree | d2afea575be100d40861dca3d8c00167225ab4bf /OpenSim/Region | |
parent | Merge branch 'master' into careminster (diff) | |
download | opensim-SC-696fbdfa24595fef5c26f5d3a297465ff765058b.zip opensim-SC-696fbdfa24595fef5c26f5d3a297465ff765058b.tar.gz opensim-SC-696fbdfa24595fef5c26f5d3a297465ff765058b.tar.bz2 opensim-SC-696fbdfa24595fef5c26f5d3a297465ff765058b.tar.xz |
Reverse the spawn point distance vector
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs index acd22e9..a8e943a 100644 --- a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs | |||
@@ -1358,7 +1358,7 @@ namespace OpenSim.Region.CoreModules.World.Estate | |||
1358 | 1358 | ||
1359 | foreach (SpawnPoint sp in settings.SpawnPoints()) | 1359 | foreach (SpawnPoint sp in settings.SpawnPoints()) |
1360 | { | 1360 | { |
1361 | spawnPoints.Add(sp.GetLocation(telehub.GroupRotation)); | 1361 | spawnPoints.Add(sp.GetLocation(Vector3.Zero, telehub.GroupRotation)); |
1362 | } | 1362 | } |
1363 | 1363 | ||
1364 | client.SendTelehubInfo(settings.TelehubObject, | 1364 | client.SendTelehubInfo(settings.TelehubObject, |