diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index d5e611c..f9b4bfd 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3420,7 +3420,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3420 | public void llInstantMessage(string user, string message) | 3420 | public void llInstantMessage(string user, string message) |
3421 | { | 3421 | { |
3422 | UUID result; | 3422 | UUID result; |
3423 | if (!UUID.TryParse(user, out result)) | 3423 | if (!UUID.TryParse(user, out result) || result == UUID.Zero) |
3424 | { | 3424 | { |
3425 | ShoutError("An invalid key was passed to llInstantMessage"); | 3425 | ShoutError("An invalid key was passed to llInstantMessage"); |
3426 | ScriptSleep(2000); | 3426 | ScriptSleep(2000); |