mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
Fix for setting region through property. This should allow
mysql to work again in grid mode for user storage.
This commit is contained in:
@@ -66,8 +66,8 @@ namespace OpenSim.Framework.Data
|
||||
{
|
||||
get { return Helpers.UIntsToLong((homeRegionX * 256), (homeRegionY * 256)); }
|
||||
set {
|
||||
System.Console.WriteLine("Don't know how to set homeRegion");
|
||||
Helpers.UIntsToLong((homeRegionX * 256), (homeRegionY * 256));
|
||||
homeRegionX = (uint)(value >> 40);
|
||||
homeRegionY = (((uint)(value)) >> 8);
|
||||
}
|
||||
}
|
||||
public uint homeRegionX;
|
||||
|
||||
Reference in New Issue
Block a user