aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.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_BuiltIn_Commands.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_BuiltIn_Commands.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 441d2fd..ca7a2bd 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -70,9 +70,10 @@ namespace OpenSim.Region.ScriptEngine.Common
70 private DateTime m_timer = DateTime.Now; 70 private DateTime m_timer = DateTime.Now;
71 private string m_state = "default"; 71 private string m_state = "default";
72 72
73 public string State() 73 public string State
74 { 74 {
75 return m_state; 75 get { return m_state; }
76 set { m_state = value; }
76 } 77 }
77 78
78 // Object never expires 79 // Object never expires