mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
Catch zero UUIDs in LSL and shout as an error. Also catch attempts to send IM
to UUID.Zero because it ties up XMLRPC handlers needlessly.
This commit is contained in:
@@ -137,6 +137,9 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage
|
||||
{
|
||||
UUID toAgentID = new UUID(im.toAgentID);
|
||||
|
||||
if (toAgentID == UUID.Zero)
|
||||
return;
|
||||
|
||||
// Try root avatar only first
|
||||
foreach (Scene scene in m_Scenes)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user