From 3b1efa4348088a55819c34dd6356ef3c948f6432 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sat, 26 Jul 2008 18:46:04 +0000 Subject: [PATCH] Re-Fix the fix --- OpenSim/Data/MySQL/MySQLDataStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Data/MySQL/MySQLDataStore.cs b/OpenSim/Data/MySQL/MySQLDataStore.cs index 5bb8f7284a..af3f02a330 100644 --- a/OpenSim/Data/MySQL/MySQLDataStore.cs +++ b/OpenSim/Data/MySQL/MySQLDataStore.cs @@ -1272,7 +1272,7 @@ namespace OpenSim.Data.MySQL private static RegionSettings buildRegionSettings(DataRow row) { RegionSettings newSettings = new RegionSettings(); - rs.OnSave += StoreRegionSettings; + newSettings.OnSave += StoreRegionSettings; newSettings.RegionUUID = new LLUUID((string) row["regionUUID"]); newSettings.BlockTerraform = Convert.ToBoolean(row["block_terraform"]);