diff options
author | gareth | 2007-04-10 01:43:40 +0000 |
---|---|---|
committer | gareth | 2007-04-10 01:43:40 +0000 |
commit | 632db47dd7b53eb1514bb3557af0383fec78087d (patch) | |
tree | f825c6e0f680b2d54bc5d39615befa846d3134f3 | |
parent | Avatar now stands still and does the normal animation stuff (diff) | |
download | opensim-SC_OLD-632db47dd7b53eb1514bb3557af0383fec78087d.zip opensim-SC_OLD-632db47dd7b53eb1514bb3557af0383fec78087d.tar.gz opensim-SC_OLD-632db47dd7b53eb1514bb3557af0383fec78087d.tar.bz2 opensim-SC_OLD-632db47dd7b53eb1514bb3557af0383fec78087d.tar.xz |
Fixed avatar appearance not updating issue as per bug report #79
-rw-r--r-- | OpenSim.RegionServer/world/AvatarUpdate.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim.RegionServer/world/AvatarUpdate.cs b/OpenSim.RegionServer/world/AvatarUpdate.cs index d20ba28..2cc4ede 100644 --- a/OpenSim.RegionServer/world/AvatarUpdate.cs +++ b/OpenSim.RegionServer/world/AvatarUpdate.cs | |||
@@ -109,7 +109,8 @@ namespace OpenSim.world | |||
109 | client.OutPacket(objupdate); | 109 | client.OutPacket(objupdate); |
110 | if (client.AgentID != ControllingClient.AgentID) | 110 | if (client.AgentID != ControllingClient.AgentID) |
111 | { | 111 | { |
112 | SendAppearanceToOtherAgent(client); | 112 | client.ClientAvatar.SendAppearanceToOtherAgent(this.ControllingClient); |
113 | SendAppearanceToOtherAgent(client); | ||
113 | } | 114 | } |
114 | } | 115 | } |
115 | } | 116 | } |