mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
replace HttpWebRequest by HttpClient on another place
This commit is contained in:
@@ -422,7 +422,7 @@ namespace OpenSim.Framework
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static ulong RegionWorldLocToHandle(uint X, uint Y)
|
||||
{
|
||||
ulong handle = X & 0xffffff00; // make sure it matchs grid coord points.
|
||||
ulong handle = X & 0xffffff00; // make sure it matches grid coord points.
|
||||
handle <<= 32; // to higher half
|
||||
handle |= (Y & 0xffffff00);
|
||||
return handle;
|
||||
|
||||
Reference in New Issue
Block a user