Fixes a bug where the viewer didn't recieve the uuid of a chat broadcasting object Thanks crystalsgalicia!slimupdates2
parent
4e7013d5d5
commit
3d72a73b22
|
@ -264,6 +264,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat
|
||||||
fromName = avatar.Name;
|
fromName = avatar.Name;
|
||||||
sourceType = ChatSourceType.Agent;
|
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);
|
// m_log.DebugFormat("[CHAT] Broadcast: fromID {0} fromName {1}, cType {2}, sType {3}", fromID, fromName, cType, sourceType);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue