From 263633e274082135b21b8183b92280b768d18883 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 18 Jul 2008 02:40:47 +0000 Subject: Patch #9151 Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans. --- OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1') diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 6f4a563..d8a6daf 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs @@ -623,7 +623,7 @@ namespace OpenSim.Region.Communications.OGS1 { if (regions[i].RegionHandle == regionHandle) { - if (regions[i].CheckIfUserBanned(agentData.AgentID)) + if (regions[i].EstateSettings.IsBanned(agentData.AgentID)) { banned = true; break; @@ -1158,7 +1158,7 @@ namespace OpenSim.Region.Communications.OGS1 { if (regions[i].RegionHandle == regionHandle) { - if (regions[i].CheckIfUserBanned(agentID)) + if (regions[i].EstateSettings.IsBanned(agentID)) { banned = true; break; -- cgit v1.1