* One line fix to get everything working again. Essentially set the originRegionID = RegionID in RegionInfo.cs on line 375
parent
d2806090ae
commit
18324773d2
|
@ -372,6 +372,7 @@ namespace OpenSim.Framework
|
|||
{
|
||||
case "sim_UUID":
|
||||
RegionID = (LLUUID) configuration_result;
|
||||
originRegionID = (LLUUID)configuration_result;
|
||||
break;
|
||||
case "sim_name":
|
||||
RegionName = (string) configuration_result;
|
||||
|
|
|
@ -235,7 +235,6 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
ModuleLoader moduleLoader, bool dumpAssetsToFile, bool physicalPrim, bool SeeIntoRegionFromNeighbor)
|
||||
{
|
||||
updateLock = new Mutex(false);
|
||||
|
||||
m_moduleLoader = moduleLoader;
|
||||
m_authenticateHandler = authen;
|
||||
CommsManager = commsMan;
|
||||
|
|
Loading…
Reference in New Issue