* Comment out user profile cache update method for now

This commit is contained in:
Justin Clarke Casey
2009-04-21 20:12:33 +00:00
parent 27c8cc5b1f
commit 607156cae8
4 changed files with 30 additions and 19 deletions

View File

@@ -156,7 +156,12 @@ namespace OpenSim.Framework
/// </summary>
public virtual ulong HomeRegion
{
get { return Utils.UIntsToLong((m_homeRegionX * (uint)Constants.RegionSize), (m_homeRegionY * (uint)Constants.RegionSize)); }
get
{
return Utils.UIntsToLong(
m_homeRegionX * (uint)Constants.RegionSize, m_homeRegionY * (uint)Constants.RegionSize);
}
set
{
m_homeRegionX = (uint) (value >> 40);