From a5860ad438885cbf76a36dc7958947355522b8cf Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 21 Jun 2008 03:29:08 +0000 Subject: * Adds Region ban capability to Regions. You access this by going to World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores. --- .../Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs') diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs index b7919e0..145d5eb 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs @@ -313,6 +313,23 @@ namespace OpenSim.DataStore.MSSQL return new List(); } + public List LoadRegionBanList(LLUUID regionUUID) + { + List regionbanlist = new List(); + return regionbanlist; + } + + public void AddToRegionBanlist(RegionBanListItem item) + { + + } + + public void RemoveFromRegionBanlist(RegionBanListItem item) + { + + } + + public void Commit() { lock (ds) -- cgit v1.1