aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs
index bf188ee..6be205e 100644
--- a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs
+++ b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs
@@ -52,9 +52,9 @@ namespace OpenSim.Data.MySQL
52 return ret[0]; 52 return ret[0];
53 } 53 }
54 54
55 public void Store(AgentPreferencesData data) 55 public override bool Store(AgentPreferencesData data)
56 { 56 {
57 base.Store(data); 57 return base.Store(data);
58 } 58 }
59 } 59 }
60} 60}