diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index bf1dbcd..da6da1e 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -837,14 +837,14 @@ namespace OpenSim.Region.Environment.Scenes | |||
837 | } | 837 | } |
838 | } | 838 | } |
839 | 839 | ||
840 | private void SendSimStatsPackets(SimStatsPacket pack) | 840 | private void SendSimStatsPackets(SimStats stats) |
841 | { | 841 | { |
842 | List<ScenePresence> StatSendAgents = GetScenePresences(); | 842 | List<ScenePresence> StatSendAgents = GetScenePresences(); |
843 | foreach (ScenePresence agent in StatSendAgents) | 843 | foreach (ScenePresence agent in StatSendAgents) |
844 | { | 844 | { |
845 | if (!agent.IsChildAgent) | 845 | if (!agent.IsChildAgent) |
846 | { | 846 | { |
847 | agent.ControllingClient.SendSimStats(pack); | 847 | agent.ControllingClient.SendSimStats(stats); |
848 | } | 848 | } |
849 | } | 849 | } |
850 | } | 850 | } |