Complete country support
parent
3d098bf27d
commit
aa6c097cca
|
@ -35,6 +35,7 @@ using OpenMetaverse;
|
||||||
using OpenSim.Framework;
|
using OpenSim.Framework;
|
||||||
using OpenSim.Region.CoreModules;
|
using OpenSim.Region.CoreModules;
|
||||||
using OpenSim.Region.Framework.Scenes;
|
using OpenSim.Region.Framework.Scenes;
|
||||||
|
using OpenSim.Services.Interfaces;
|
||||||
|
|
||||||
namespace OpenSim.Region.ScriptEngine.Shared
|
namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
{
|
{
|
||||||
|
@ -95,6 +96,7 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
Type = 0;
|
Type = 0;
|
||||||
Velocity = new LSL_Types.Vector3();
|
Velocity = new LSL_Types.Vector3();
|
||||||
initializeSurfaceTouch();
|
initializeSurfaceTouch();
|
||||||
|
Country = String.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
public UUID Key;
|
public UUID Key;
|
||||||
|
@ -126,6 +128,8 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
private int touchFace;
|
private int touchFace;
|
||||||
public int TouchFace { get { return touchFace; } }
|
public int TouchFace { get { return touchFace; } }
|
||||||
|
|
||||||
|
public string Country;
|
||||||
|
|
||||||
// This can be done in two places including the constructor
|
// This can be done in two places including the constructor
|
||||||
// so be carefull what gets added here
|
// so be carefull what gets added here
|
||||||
private void initializeSurfaceTouch()
|
private void initializeSurfaceTouch()
|
||||||
|
@ -173,6 +177,10 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Name = presence.Firstname + " " + presence.Lastname;
|
Name = presence.Firstname + " " + presence.Lastname;
|
||||||
|
UserAccount account = scene.UserAccountService.GetUserAccount(scene.RegionInfo.ScopeID, Key);
|
||||||
|
if (account != null)
|
||||||
|
Country = account.UserCountry;
|
||||||
|
|
||||||
Owner = Key;
|
Owner = Key;
|
||||||
Position = new LSL_Types.Vector3(
|
Position = new LSL_Types.Vector3(
|
||||||
presence.AbsolutePosition.X,
|
presence.AbsolutePosition.X,
|
||||||
|
|
Loading…
Reference in New Issue