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. --- OpenSim/Data/Null/NullDataStore.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'OpenSim/Data/Null/NullDataStore.cs') diff --git a/OpenSim/Data/Null/NullDataStore.cs b/OpenSim/Data/Null/NullDataStore.cs index 487f72e..90cf3a1 100644 --- a/OpenSim/Data/Null/NullDataStore.cs +++ b/OpenSim/Data/Null/NullDataStore.cs @@ -80,6 +80,22 @@ namespace OpenSim.Data.Null 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 Shutdown() { } -- cgit v1.1