diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Addons/Groups/GroupsModule.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Addons/Groups/GroupsModule.cs b/OpenSim/Addons/Groups/GroupsModule.cs index 1d0acf4..3336e94 100644 --- a/OpenSim/Addons/Groups/GroupsModule.cs +++ b/OpenSim/Addons/Groups/GroupsModule.cs | |||
@@ -1265,6 +1265,11 @@ namespace OpenSim.Groups | |||
1265 | { | 1265 | { |
1266 | if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called for {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, remoteClient.Name); | 1266 | if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called for {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, remoteClient.Name); |
1267 | 1267 | ||
1268 | // NPCs currently don't have a CAPs structure or event queues. There is a strong argument for conveying this information | ||
1269 | // to them anyway since it makes writing server-side bots a lot easier, but for now we don't do anything. | ||
1270 | if (remoteClient.SceneAgent.PresenceType == PresenceType.Npc) | ||
1271 | return; | ||
1272 | |||
1268 | // TODO: All the client update functions need to be reexamined because most do too much and send too much stuff | 1273 | // TODO: All the client update functions need to be reexamined because most do too much and send too much stuff |
1269 | 1274 | ||
1270 | UUID agentID = GetRequestingAgentID(remoteClient); | 1275 | UUID agentID = GetRequestingAgentID(remoteClient); |