From e7807d43597213eb5e49ec310125263010957e08 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Wed, 17 Jun 2020 16:12:24 +0100 Subject: [PATCH] missing files --- OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs | 6 +++--- OpenSim/Region/Framework/Interfaces/IEstateModule.cs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs b/OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs index 096eaf61da..f95d50fa65 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs @@ -174,8 +174,8 @@ namespace OpenSim.Region.ClientStack.Linden { string estateName = r["estate_name"].AsString(); UUID invoice = r["invoice"].AsUUID(); - int sunHour = r["sun_hour"].AsInteger(); - bool sunFixed = r["is_sun_fixed"].AsBoolean(); + //int sunHour = r["sun_hour"].AsInteger(); + //bool sunFixed = r["is_sun_fixed"].AsBoolean(); bool externallyVisible = r["is_externally_visible"].AsBoolean(); bool allowDirectTeleport = r["allow_direct_teleport"].AsBoolean(); bool denyAnonymous = r["deny_anonymous"].AsBoolean(); @@ -190,7 +190,7 @@ namespace OpenSim.Region.ClientStack.Linden if (r.ContainsKey("override_environment")) allowEnviromentOverride = !r["override_environment"].AsBoolean(); - ok = m_EstateModule.handleEstateChangeInfoCap(estateName, invoice, sunHour, sunFixed, + ok = m_EstateModule.handleEstateChangeInfoCap(estateName, invoice, externallyVisible, allowDirectTeleport, denyAnonymous, denyAgeUnverified, alloVoiceChat, overridePublicAccess, allowEnviromentOverride); } diff --git a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs index f2948c163b..a8464b1190 100644 --- a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs @@ -68,9 +68,9 @@ namespace OpenSim.Region.Framework.Interfaces /// Returns whether the transfer ID is being used for a terrain transfer. /// bool IsTerrainXfer(ulong xferID); - bool handleEstateChangeInfoCap(string estateName, UUID invoice, int sunHour, bool sunFixed, - bool externallyVisible, bool allowDirectTeleport, bool denyAnonymous, bool denyAgeUnverified, - bool alloVoiceChat, bool overridePublicAccess, bool allowEnviromentOverride); + bool handleEstateChangeInfoCap(string estateName, UUID invoice, + bool externallyVisible, bool allowDirectTeleport, bool denyAnonymous, bool denyAgeUnverified, + bool alloVoiceChat, bool overridePublicAccess, bool allowEnviromentOverride); void HandleRegionInfoRequest(IClientAPI remote_client); } }