From 07836b890ce318fe9b45ff391ba54d515b18ea76 Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Thu, 23 Aug 2007 18:43:11 +0000 Subject: Lowered priority of script threads. Executing state_entry() event on script rez. --- .../DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 9 --------- 1 file changed, 9 deletions(-) (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs') 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 de1385c..ca51542 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 @@ -133,19 +133,12 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler public void llWhisper(int channelID, string text) { - //Common.SendToDebug("INTERNAL FUNCTION llWhisper(" + channelID + ", \"" + text + "\");"); - //Console.WriteLine("llWhisper Channel " + channelID + ", Text: \"" + text + "\""); //type for whisper is 0 World.SimChat(Helpers.StringToField(text), 0, m_host.AbsolutePosition, m_host.Name, m_host.UUID); - - } - //public void llSay(int channelID, string text) public void llSay(int channelID, string text) { - //Common.SendToDebug("INTERNAL FUNCTION llSay(" + (int)channelID + ", \"" + (string)text + "\");"); - //Console.WriteLine("llSay Channel " + channelID + ", Text: \"" + text + "\""); //type for say is 1 World.SimChat(Helpers.StringToField(text), @@ -154,11 +147,9 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler public void llShout(int channelID, string text) { - //Console.WriteLine("llShout Channel " + channelID + ", Text: \"" + text + "\""); //type for shout is 2 World.SimChat(Helpers.StringToField(text), 2, m_host.AbsolutePosition, m_host.Name, m_host.UUID); - } public int llListen(int channelID, string name, string ID, string msg) { return 0; } -- cgit v1.1