aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
authorJeff Ames2007-12-10 02:29:42 +0000
committerJeff Ames2007-12-10 02:29:42 +0000
commite278d07220f976dec730890e4853ead58f83502a (patch)
tree14873c24f88ae4e32e75ec286df34de00c0db94f /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
parent* Hooked up the GridComm event ChildDataUpdate to the scene. (diff)
downloadopensim-SC_OLD-e278d07220f976dec730890e4853ead58f83502a.zip
opensim-SC_OLD-e278d07220f976dec730890e4853ead58f83502a.tar.gz
opensim-SC_OLD-e278d07220f976dec730890e4853ead58f83502a.tar.bz2
opensim-SC_OLD-e278d07220f976dec730890e4853ead58f83502a.tar.xz
refactored ChatModule a bit.
misc cleanup and code convention fixes.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
index 1b660b8..353382d 100644
--- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
@@ -59,7 +59,6 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
59 private LLUUID m_itemID; 59 private LLUUID m_itemID;
60 private bool throwErrorOnNotImplemented = true; 60 private bool throwErrorOnNotImplemented = true;
61 61
62
63 public LSL_BuiltIn_Commands(ScriptEngine ScriptEngine, SceneObjectPart host, uint localID, LLUUID itemID) 62 public LSL_BuiltIn_Commands(ScriptEngine ScriptEngine, SceneObjectPart host, uint localID, LLUUID itemID)
64 { 63 {
65 m_ScriptEngine = ScriptEngine; 64 m_ScriptEngine = ScriptEngine;
@@ -67,11 +66,9 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
67 m_localID = localID; 66 m_localID = localID;
68 m_itemID = itemID; 67 m_itemID = itemID;
69 68
70
71 //MainLog.Instance.Notice("ScriptEngine", "LSL_BaseClass.Start() called. Hosted by [" + m_host.Name + ":" + m_host.UUID + "@" + m_host.AbsolutePosition + "]"); 69 //MainLog.Instance.Notice("ScriptEngine", "LSL_BaseClass.Start() called. Hosted by [" + m_host.Name + ":" + m_host.UUID + "@" + m_host.AbsolutePosition + "]");
72 } 70 }
73 71
74
75 private string m_state = "default"; 72 private string m_state = "default";
76 73
77 public string State() 74 public string State()
@@ -95,7 +92,6 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
95 return lease; 92 return lease;
96 } 93 }
97 94
98
99 public Scene World 95 public Scene World
100 { 96 {
101 get { return m_ScriptEngine.World; } 97 get { return m_ScriptEngine.World; }
@@ -1022,7 +1018,6 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
1022 m_host.SetText(text, av3, alpha); 1018 m_host.SetText(text, av3, alpha);
1023 } 1019 }
1024 1020
1025
1026 public double llWater(LSL_Types.Vector3 offset) 1021 public double llWater(LSL_Types.Vector3 offset)
1027 { 1022 {
1028 NotImplemented("llWater"); 1023 NotImplemented("llWater");
@@ -2300,4 +2295,4 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
2300 throw new NotImplementedException("Command not implemented: " + Command); 2295 throw new NotImplementedException("Command not implemented: " + Command);
2301 } 2296 }
2302 } 2297 }
2303} \ No newline at end of file 2298}