Fixes a bug where the viewer didn't recieve the uuid of a chat broadcasting object
Thanks crystalsgalicia!
0.6.9
Justin Clark-Casey 2010-05-14 21:22:53 +01:00 committed by Justin Clark-Casey (justincc)
parent 547e027899
commit 2f6bb01370
1 changed files with 4 additions and 0 deletions

View File

@ -264,6 +264,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat
fromName = avatar.Name;
sourceType = ChatSourceType.Agent;
}
else if (c.SenderUUID != UUID.Zero)
{
fromID = c.SenderUUID;
}
// m_log.DebugFormat("[CHAT] Broadcast: fromID {0} fromName {1}, cType {2}, sType {3}", fromID, fromName, cType, sourceType);