mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
LevelUpload setting is now on [Permissions], so look for it there also
This commit is contained in:
@@ -160,6 +160,14 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||
{
|
||||
m_levelUpload = sconfig.GetInt("LevelUpload", 0);
|
||||
}
|
||||
if (m_levelUpload == 0)
|
||||
{
|
||||
IConfig pconfig = config.Configs["Permissions"];
|
||||
if (pconfig != null)
|
||||
{
|
||||
m_levelUpload = pconfig.GetInt("LevelUpload", 0);
|
||||
}
|
||||
}
|
||||
|
||||
IConfig appearanceConfig = config.Configs["Appearance"];
|
||||
if (appearanceConfig != null)
|
||||
|
||||
Reference in New Issue
Block a user