store terrain module trying to load plugins if plugin path does not exist
parent
c6bc1d28ec
commit
f37ec933ae
|
@ -381,8 +381,13 @@ namespace OpenSim.Region.CoreModules.World.Terrain
|
|||
private void LoadPlugins()
|
||||
{
|
||||
m_plugineffects = new Dictionary<string, ITerrainEffect>();
|
||||
string plugineffectsPath = "Terrain";
|
||||
|
||||
// Load the files in the Terrain/ dir
|
||||
string[] files = Directory.GetFiles("Terrain");
|
||||
if (!Directory.Exists(plugineffectsPath))
|
||||
return;
|
||||
|
||||
string[] files = Directory.GetFiles(plugineffectsPath);
|
||||
foreach (string file in files)
|
||||
{
|
||||
m_log.Info("Loading effects in " + file);
|
||||
|
|
Loading…
Reference in New Issue