mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
* minor refactorings
This commit is contained in:
@@ -75,7 +75,7 @@ namespace OpenSim.Region.Scripting
|
||||
{
|
||||
IScript script = (IScript)compilerResults.CompiledAssembly.CreateInstance(pluginType.ToString());
|
||||
|
||||
string scriptName = "C#/" + script.getName();
|
||||
string scriptName = "C#/" + script.Name;
|
||||
Console.WriteLine("Script: " + scriptName + " loaded.");
|
||||
|
||||
if (!scripts.ContainsKey(scriptName))
|
||||
|
||||
@@ -12,9 +12,9 @@ namespace OpenSim.Region.Scripting.Examples
|
||||
{
|
||||
ScriptInfo script;
|
||||
|
||||
public string getName()
|
||||
public string Name
|
||||
{
|
||||
return "LSL Export Script 0.1";
|
||||
get { return "LSL Export Script 0.1"; }
|
||||
}
|
||||
|
||||
public void Initialise(ScriptInfo scriptInfo)
|
||||
|
||||
Reference in New Issue
Block a user