diff options
author | Teravus Ovares | 2008-01-02 03:05:18 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-01-02 03:05:18 +0000 |
commit | 2f435783866656f8e75ba96febe688378ff320b0 (patch) | |
tree | 4d1b4351b8cb10132c4cbd7a26d78fa2d2ffe3eb /OpenSim/Region/ClientStack | |
parent | * Updates UserServer (diff) | |
download | opensim-SC_OLD-2f435783866656f8e75ba96febe688378ff320b0.zip opensim-SC_OLD-2f435783866656f8e75ba96febe688378ff320b0.tar.gz opensim-SC_OLD-2f435783866656f8e75ba96febe688378ff320b0.tar.bz2 opensim-SC_OLD-2f435783866656f8e75ba96febe688378ff320b0.tar.xz |
* Re-wrote IM that sends the friend request so that it displays the name of the person who sent the request, or (hippos) if it can't find it.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index aa8ab1d..414916c 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -2550,7 +2550,7 @@ namespace OpenSim.Region.ClientStack | |||
2550 | string IMmessage = Helpers.FieldToUTF8String(msgpack.MessageBlock.Message); | 2550 | string IMmessage = Helpers.FieldToUTF8String(msgpack.MessageBlock.Message); |
2551 | if (OnInstantMessage != null) | 2551 | if (OnInstantMessage != null) |
2552 | { | 2552 | { |
2553 | OnInstantMessage(msgpack.AgentData.AgentID, msgpack.AgentData.SessionID, | 2553 | OnInstantMessage(this,msgpack.AgentData.AgentID, msgpack.AgentData.SessionID, |
2554 | msgpack.MessageBlock.ToAgentID, msgpack.MessageBlock.ID, | 2554 | msgpack.MessageBlock.ToAgentID, msgpack.MessageBlock.ID, |
2555 | msgpack.MessageBlock.Timestamp, IMfromName, IMmessage, | 2555 | msgpack.MessageBlock.Timestamp, IMfromName, IMmessage, |
2556 | msgpack.MessageBlock.Dialog, msgpack.MessageBlock.FromGroup, | 2556 | msgpack.MessageBlock.Dialog, msgpack.MessageBlock.FromGroup, |