Exemple #1
0
        void EventManager_OnStartupFullyComplete(IScene scene, List <string> data)
        {
            //Just send the RegionIsOnline message, it will log out all the agents for the region as well
            ISyncMessagePosterService syncMessage = scene.RequestModuleInterface <ISyncMessagePosterService> ();

            if (syncMessage != null)
            {
                syncMessage.PostToServer(SyncMessageHelper.RegionIsOnline(scene.RegionInfo.RegionID));
            }
        }