mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +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:
@@ -71,18 +71,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; }
|
||||
}
|
||||
|
||||
public void NewClient(IClientAPI client)
|
||||
|
||||
Reference in New Issue
Block a user