diff options
author | Diva Canto | 2016-06-11 10:23:07 -0700 |
---|---|---|
committer | Diva Canto | 2016-06-11 10:23:07 -0700 |
commit | 53d8b8a83f8263d7ecabf72ffda2a22b97fdf6bd (patch) | |
tree | 909d926bacfd419a7a74d4436fddf89382c31953 /OpenSim/Region | |
parent | Mantis #7858. This is s shot in the dark, because I cannot reproduce the prob... (diff) | |
download | opensim-SC_OLD-53d8b8a83f8263d7ecabf72ffda2a22b97fdf6bd.zip opensim-SC_OLD-53d8b8a83f8263d7ecabf72ffda2a22b97fdf6bd.tar.gz opensim-SC_OLD-53d8b8a83f8263d7ecabf72ffda2a22b97fdf6bd.tar.bz2 opensim-SC_OLD-53d8b8a83f8263d7ecabf72ffda2a22b97fdf6bd.tar.xz |
Mantis #7874: parcel properties not being updated upon avatar entering new parcel. Root cause: update of the avatar's current property was being made too soon.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs index 5cd8d5b..84a969b 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | |||
@@ -526,7 +526,6 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
526 | ILandObject newover = GetLandObject(pos.X, pos.Y); | 526 | ILandObject newover = GetLandObject(pos.X, pos.Y); |
527 | if(over != newover || avatar.currentParcelUUID != newover.LandData.GlobalID) | 527 | if(over != newover || avatar.currentParcelUUID != newover.LandData.GlobalID) |
528 | { | 528 | { |
529 | avatar.currentParcelUUID = newover.LandData.GlobalID; | ||
530 | m_scene.EventManager.TriggerAvatarEnteringNewParcel(avatar, | 529 | m_scene.EventManager.TriggerAvatarEnteringNewParcel(avatar, |
531 | newover.LandData.LocalID, m_scene.RegionInfo.RegionID); | 530 | newover.LandData.LocalID, m_scene.RegionInfo.RegionID); |
532 | } | 531 | } |