diff options
author | Melanie | 2011-01-06 19:08:15 +0000 |
---|---|---|
committer | Melanie | 2011-01-06 19:08:15 +0000 |
commit | de4eaab5847b6c4c5eb4c8c07191b8c463d0b3ad (patch) | |
tree | 7b9865d97acfd441edb97d12ce8286eb48901cee /OpenSim/Region | |
parent | Fix god mode perms adjustment (diff) | |
parent | Merge branch 'master' into cmickeyb (diff) | |
download | opensim-SC_OLD-de4eaab5847b6c4c5eb4c8c07191b8c463d0b3ad.zip opensim-SC_OLD-de4eaab5847b6c4c5eb4c8c07191b8c463d0b3ad.tar.gz opensim-SC_OLD-de4eaab5847b6c4c5eb4c8c07191b8c463d0b3ad.tar.bz2 opensim-SC_OLD-de4eaab5847b6c4c5eb4c8c07191b8c463d0b3ad.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region')
3 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs index 7396c2d..6985449 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | |||
@@ -648,7 +648,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
648 | IClientAPI client; | 648 | IClientAPI client; |
649 | if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView)) | 649 | if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView)) |
650 | { | 650 | { |
651 | m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); | 651 | //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); |
652 | return; | 652 | return; |
653 | } | 653 | } |
654 | 654 | ||
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 208c2a6..b8ad3ca 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2858,7 +2858,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2858 | // m_log.WarnFormat("[SP] Send avatar data from {0} to {1}",m_uuid,avatar.ControllingClient.AgentId); | 2858 | // m_log.WarnFormat("[SP] Send avatar data from {0} to {1}",m_uuid,avatar.ControllingClient.AgentId); |
2859 | 2859 | ||
2860 | avatar.ControllingClient.SendAvatarDataImmediate(this); | 2860 | avatar.ControllingClient.SendAvatarDataImmediate(this); |
2861 | Animator.SendAnimPackToClient(avatar.ControllingClient); | 2861 | if (Animator != null) |
2862 | Animator.SendAnimPackToClient(avatar.ControllingClient); | ||
2862 | } | 2863 | } |
2863 | 2864 | ||
2864 | /// <summary> | 2865 | /// <summary> |
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs index 4aab87f..a8dec63 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | |||
@@ -123,8 +123,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
123 | m_log.InfoFormat("[GROUPS]: Initializing {0}", this.Name); | 123 | m_log.InfoFormat("[GROUPS]: Initializing {0}", this.Name); |
124 | 124 | ||
125 | m_groupNoticesEnabled = groupsConfig.GetBoolean("NoticesEnabled", true); | 125 | m_groupNoticesEnabled = groupsConfig.GetBoolean("NoticesEnabled", true); |
126 | m_debugEnabled = groupsConfig.GetBoolean("DebugEnabled", true); | 126 | m_debugEnabled = groupsConfig.GetBoolean("DebugEnabled", false); |
127 | |||
128 | } | 127 | } |
129 | } | 128 | } |
130 | 129 | ||