Prevent the core Groups module from being enabled when its name doesn't match the "default" ini choice
parent
5b79bfc4df
commit
2cd88787af
|
@ -81,7 +81,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Groups
|
||||||
}
|
}
|
||||||
|
|
||||||
if (groupsConfig.GetString("Module", "Default") != "Default")
|
if (groupsConfig.GetString("Module", "Default") != "Default")
|
||||||
|
{
|
||||||
|
m_Enabled = false;
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue