Make the inventory transfer module replacable in config.
parent
0bff4215fe
commit
865b5bb317
|
@ -55,6 +55,15 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Transfer
|
||||||
|
|
||||||
public void Initialise(Scene scene, IConfigSource config)
|
public void Initialise(Scene scene, IConfigSource config)
|
||||||
{
|
{
|
||||||
|
if (config.Configs["Messaging"] != null)
|
||||||
|
{
|
||||||
|
// Allow disabling this module in config
|
||||||
|
//
|
||||||
|
if (config.Configs["Messaging"].GetString(
|
||||||
|
"InventoryTransferModule", "InventoryTransferModule") !=
|
||||||
|
"InventoryTransferModule")
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (!m_Scenelist.Contains(scene))
|
if (!m_Scenelist.Contains(scene))
|
||||||
{
|
{
|
||||||
m_Scenelist.Add(scene);
|
m_Scenelist.Add(scene);
|
||||||
|
|
Loading…
Reference in New Issue