diff options
author | Tedd Hansen | 2007-08-09 20:59:35 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-08-09 20:59:35 +0000 |
commit | ae970d4171084d539ce995c428320baa9c59cd8c (patch) | |
tree | 260a79f4a76463603ed12b15572a2b20ed28dc00 /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler | |
parent | added group position (diff) | |
download | opensim-SC_OLD-ae970d4171084d539ce995c428320baa9c59cd8c.zip opensim-SC_OLD-ae970d4171084d539ce995c428320baa9c59cd8c.tar.gz opensim-SC_OLD-ae970d4171084d539ce995c428320baa9c59cd8c.tar.bz2 opensim-SC_OLD-ae970d4171084d539ce995c428320baa9c59cd8c.tar.xz |
Removed 2 warnings. Added pointer comments to where to add hooks and modify functions to get SE working.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Server_API/LSL_BuiltIn_Commands_TestImplementation.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Server_API/LSL_BuiltIn_Commands_TestImplementation.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Server_API/LSL_BuiltIn_Commands_TestImplementation.cs index bbdafad..3536bf3 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Server_API/LSL_BuiltIn_Commands_TestImplementation.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Server_API/LSL_BuiltIn_Commands_TestImplementation.cs | |||
@@ -70,6 +70,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
70 | //public void llSay(UInt32 channelID, string text) | 70 | //public void llSay(UInt32 channelID, string text) |
71 | public void llSay(object channelID, object text) | 71 | public void llSay(object channelID, object text) |
72 | { | 72 | { |
73 | //TODO: DO SOMETHING USEFUL HERE | ||
73 | Common.SendToDebug("INTERNAL FUNCTION llSay(" + (UInt32)channelID + ", \"" + (string)text + "\");"); | 74 | Common.SendToDebug("INTERNAL FUNCTION llSay(" + (UInt32)channelID + ", \"" + (string)text + "\");"); |
74 | Common.SendToLog("llSay Channel " + (UInt32)channelID + ", Text: \"" + (string)text + "\""); | 75 | Common.SendToLog("llSay Channel " + (UInt32)channelID + ", Text: \"" + (string)text + "\""); |
75 | } | 76 | } |