aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs')
-rw-r--r--OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
index 3a7f668..ad1b989 100644
--- a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs
@@ -272,28 +272,28 @@ namespace OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler
272 public void llWhisper(int channelID, string text) 272 public void llWhisper(int channelID, string text)
273 { 273 {
274 World.SimChat(Helpers.StringToField(text), 274 World.SimChat(Helpers.StringToField(text),
275 ChatTypeEnum.Whisper, channelID, m_host.AbsolutePosition, 275 ChatTypeEnum.Whisper, channelID, m_host.AbsolutePosition,
276 m_host.Name, m_host.UUID, false); 276 m_host.Name, m_host.UUID, false);
277 } 277 }
278 278
279 public void llSay(int channelID, string text) 279 public void llSay(int channelID, string text)
280 { 280 {
281 World.SimChat(Helpers.StringToField(text), 281 World.SimChat(Helpers.StringToField(text),
282 ChatTypeEnum.Say, channelID, m_host.AbsolutePosition, 282 ChatTypeEnum.Say, channelID, m_host.AbsolutePosition,
283 m_host.Name, m_host.UUID, false); 283 m_host.Name, m_host.UUID, false);
284 } 284 }
285 285
286 public void llShout(int channelID, string text) 286 public void llShout(int channelID, string text)
287 { 287 {
288 World.SimChat(Helpers.StringToField(text), 288 World.SimChat(Helpers.StringToField(text),
289 ChatTypeEnum.Shout, channelID, m_host.AbsolutePosition, 289 ChatTypeEnum.Shout, channelID, m_host.AbsolutePosition,
290 m_host.Name, m_host.UUID, false); 290 m_host.Name, m_host.UUID, false);
291 } 291 }
292 292
293 public void llOwnerSay(string msg) 293 public void llOwnerSay(string msg)
294 { 294 {
295 World.SimChatBroadcast(Helpers.StringToField(text), 295 World.SimChatBroadcast(Helpers.StringToField(text),
296 ChatTypeEnum.Owner, 0, m_host.AbsolutePosition, 296 ChatTypeEnum.Owner, 0, m_host.AbsolutePosition,
297 m_host.Name, m_host.UUID, false); 297 m_host.Name, m_host.UUID, false);
298 } 298 }
299 299