* More LSL related fun

This commit is contained in:
Adam Frisby
2007-07-17 23:14:19 +00:00
parent c287ee17ad
commit 9fc72755ce
5 changed files with 23 additions and 7 deletions

View File

@@ -52,7 +52,12 @@ namespace OpenSim.Region.Scripting
world = scene;
events = world.EventManager;
logger = MainLog.Instance;
api = new ScriptAPI(scene);
api = new ScriptAPI(world, libsecondlife.LLUUID.Zero);
}
public void CreateTaskAPI(libsecondlife.LLUUID task)
{
api = new ScriptAPI(world, task);
}
}
}