From 39a649e768a85febb83bd6692ce2c821502c3854 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 16 Jul 2021 01:53:42 +0100 Subject: [PATCH] add missing change --- OpenSim/Region/Framework/Scenes/Scene.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 2f15994323..2624fd1cbc 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -5222,6 +5222,11 @@ Label_GroupsDone: return m_sceneGraph.GetRootAgentCount(); } + public int GetRootNPCCount() + { + return m_sceneGraph.GetRootAgentCount(); + } + public int GetChildAgentCount() { return m_sceneGraph.GetChildAgentCount();