add a missing god_date transmition

melanie
UbitUmarov 2017-01-06 17:33:12 +00:00
parent 0b912b2acc
commit 497c417885
1 changed files with 6 additions and 2 deletions

View File

@ -1045,7 +1045,6 @@ namespace OpenSim.Region.Framework.Scenes
public ScenePresence(
IClientAPI client, Scene world, AvatarAppearance appearance, PresenceType type)
{
GodController = new GodController(world, this);
m_scene = world;
AttachmentsSyncLock = new Object();
@ -1072,8 +1071,12 @@ namespace OpenSim.Region.Framework.Scenes
else
m_userFlags = 0;
int userlevel = 0;
if (account != null)
GodController.UserLevel = account.UserLevel;
userlevel = account.UserLevel;
// GodController = new GodController(world, this, userlevel);
GodController = new GodController(world, this);
// IGroupsModule gm = m_scene.RequestModuleInterface<IGroupsModule>();
// if (gm != null)
@ -4612,6 +4615,7 @@ namespace OpenSim.Region.Framework.Scenes
cAgent.UpAxis = CameraUpAxis;
cAgent.Far = DrawDistance;
cAgent.GodData = GodController.State();
// Throttles
cAgent.Throttles = ControllingClient.GetThrottlesPacked(1);