* Reapply homer's click action implementation, which accidentally got blatted
* Thanks tyre
0.6.0-stable
Justin Clarke Casey 2008-09-26 15:18:22 +00:00
parent 1278563482
commit 4b78aa50e6
1 changed files with 3 additions and 1 deletions

View File

@ -1143,7 +1143,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public void llSetClickAction(int action)
{
m_host.AddScriptLPS(1);
NotImplemented("llSetClickAction");
m_host.ClickAction = (byte)action;
if (m_host.ParentGroup != null) m_host.ParentGroup.HasGroupChanged = true;
m_host.ScheduleFullUpdate();
return;
}