mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
We now support LSL state
This commit is contained in:
@@ -70,9 +70,10 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
private DateTime m_timer = DateTime.Now;
|
||||
private string m_state = "default";
|
||||
|
||||
public string State()
|
||||
public string State
|
||||
{
|
||||
return m_state;
|
||||
get { return m_state; }
|
||||
set { m_state = value; }
|
||||
}
|
||||
|
||||
// Object never expires
|
||||
|
||||
Reference in New Issue
Block a user