diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 4 |
1 files changed, 4 insertions, 0 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 0e905be..94479a0 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 | |||
@@ -292,6 +292,10 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler | |||
292 | 292 | ||
293 | public int llListen(int channelID, string name, string ID, string msg) | 293 | public int llListen(int channelID, string name, string ID, string msg) |
294 | { | 294 | { |
295 | if (ID == "") | ||
296 | { | ||
297 | ID = LLUUID.Zero.ToString(); | ||
298 | } | ||
295 | IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>(); | 299 | IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>(); |
296 | return wComm.Listen(m_localID, m_itemID, m_host.UUID, channelID, name, ID, msg); | 300 | return wComm.Listen(m_localID, m_itemID, m_host.UUID, channelID, name, ID, msg); |
297 | } | 301 | } |