mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
* Gave ModuleLoader some good lovin'
* Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
This commit is contained in:
@@ -85,18 +85,18 @@ namespace OpenSim.Region.Environment.Modules
|
||||
{
|
||||
}
|
||||
|
||||
public void CloseDown()
|
||||
public void Close()
|
||||
{
|
||||
}
|
||||
|
||||
public string GetName()
|
||||
public string Name
|
||||
{
|
||||
return m_name;
|
||||
get { return m_name; }
|
||||
}
|
||||
|
||||
public bool IsSharedModule()
|
||||
public bool IsSharedModule
|
||||
{
|
||||
return false;
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
/**********************************************
|
||||
|
||||
Reference in New Issue
Block a user