mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
If RegionReady is active, don't falsely say that logins are enabled in the main scene loop before RegionReady is signalled when initial script compilation finishes.
Also raises this logging level to Info from Debug since this information is of high importance. This matches the behaviour of the RegionReady module
This commit is contained in:
@@ -1474,11 +1474,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
LoginLock = false;
|
||||
EventManager.TriggerLoginsEnabled(RegionInfo.RegionName);
|
||||
}
|
||||
m_log.DebugFormat("[REGION]: Enabling logins for {0}", RegionInfo.RegionName);
|
||||
|
||||
// For RegionReady lockouts
|
||||
if(LoginLock == false)
|
||||
if (!LoginLock)
|
||||
{
|
||||
m_log.InfoFormat("[REGION]: Enabling logins for {0}", RegionInfo.RegionName);
|
||||
LoginsDisabled = false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user