aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs
diff options
context:
space:
mode:
authorTedd Hansen2008-02-10 22:25:59 +0000
committerTedd Hansen2008-02-10 22:25:59 +0000
commit9a04e0e1c4f0a959f826acce7277daf0132ef66d (patch)
tree35c2defb96722c0fd1d1788b358493a5959324d9 /OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs
parentThe very beginnings of attachments (no detachments! :) (diff)
downloadopensim-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.cs5
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