Fixed LSL State support.

* Re-applied Tedd's patch that got overwritten.
* Replaced (state)\s+([^;\n\r]+)([\r\n\s];) with (state)\s+([^;\n\r]+)(;[\r\n\s])
* Added a state(string) method to BuiltIn_Commands_BaseClass
This commit is contained in:
Teravus Ovares
2008-04-15 16:49:06 +00:00
parent 6f8ff32630
commit 331f26548b
3 changed files with 57 additions and 35 deletions

View File

@@ -106,7 +106,11 @@ namespace OpenSim.Region.ScriptEngine.Common
get { return m_LSL_Functions.State; }
set { m_LSL_Functions.State = value; }
}
public void state(string state)
{
State = state;
}
public void Start(BuilIn_Commands LSL_Functions)