* Fixed an issue where the RegionFlags and SimAccess settings were being saved incorrectly. If your region is already having an issue on boot with parsing [region_flags] or [sim_access], then this won't solve your issue. Default value for region_flags is 0 and default value for sim_access is 21 in the EstateSettings.XML file

afrisby
Teravus Ovares 2008-01-02 04:10:55 +00:00
parent 2f43578386
commit 3aa0f32ce3
1 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ namespace OpenSim.Framework
set set
{ {
m_regionFlags = value; m_regionFlags = value;
configMember.forceSetConfigurationOption("region_flags", m_regionFlags.ToString()); configMember.forceSetConfigurationOption("region_flags", ((uint)m_regionFlags).ToString());
} }
} }
@ -141,7 +141,7 @@ namespace OpenSim.Framework
set set
{ {
m_simAccess = value; m_simAccess = value;
configMember.forceSetConfigurationOption("sim_access", m_simAccess.ToString()); configMember.forceSetConfigurationOption("sim_access", ((byte)m_simAccess).ToString());
} }
} }