diff options
author | Tedd Hansen | 2008-02-10 22:25:59 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-02-10 22:25:59 +0000 |
commit | 9a04e0e1c4f0a959f826acce7277daf0132ef66d (patch) | |
tree | 35c2defb96722c0fd1d1788b358493a5959324d9 /OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | |
parent | The very beginnings of attachments (no detachments! :) (diff) | |
download | opensim-SC_OLD-9a04e0e1c4f0a959f826acce7277daf0132ef66d.zip opensim-SC_OLD-9a04e0e1c4f0a959f826acce7277daf0132ef66d.tar.gz opensim-SC_OLD-9a04e0e1c4f0a959f826acce7277daf0132ef66d.tar.bz2 opensim-SC_OLD-9a04e0e1c4f0a959f826acce7277daf0132ef66d.tar.xz |
We now support LSL state
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs index 3aea72b..b6710f0 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | |||
@@ -102,9 +102,10 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
102 | { | 102 | { |
103 | } | 103 | } |
104 | 104 | ||
105 | public string State() | 105 | public string State |
106 | { | 106 | { |
107 | return m_LSL_Functions.State(); | 107 | get { return m_LSL_Functions.State; } |
108 | set { m_LSL_Functions.State = value; } | ||
108 | } | 109 | } |
109 | 110 | ||
110 | 111 | ||