aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IAgentPreferencesService.cs
diff options
context:
space:
mode:
authorDiva Canto2015-06-13 08:36:06 -0700
committerDiva Canto2015-06-13 08:36:06 -0700
commitbcb8a7d7f935c37d6d83aac6a9ba4988e59814c7 (patch)
tree31243717e91897923c2c5580a96554bb8602bf9b /OpenSim/Services/Interfaces/IAgentPreferencesService.cs
parentRefactor AgentPreferences so that database operations happen centrally. the o... (diff)
downloadopensim-SC-bcb8a7d7f935c37d6d83aac6a9ba4988e59814c7.zip
opensim-SC-bcb8a7d7f935c37d6d83aac6a9ba4988e59814c7.tar.gz
opensim-SC-bcb8a7d7f935c37d6d83aac6a9ba4988e59814c7.tar.bz2
opensim-SC-bcb8a7d7f935c37d6d83aac6a9ba4988e59814c7.tar.xz
A few bug fixes for Agent Preferences to actually work. Also added missing config for standalone.
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/IAgentPreferencesService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IAgentPreferencesService.cs b/OpenSim/Services/Interfaces/IAgentPreferencesService.cs
index b74b580..3b4fda2 100644
--- a/OpenSim/Services/Interfaces/IAgentPreferencesService.cs
+++ b/OpenSim/Services/Interfaces/IAgentPreferencesService.cs
@@ -35,7 +35,7 @@ namespace OpenSim.Services.Interfaces
35 { 35 {
36 public AgentPrefs(UUID principalID) 36 public AgentPrefs(UUID principalID)
37 { 37 {
38 principalID = PrincipalID; 38 PrincipalID = principalID;
39 } 39 }
40 40
41 public AgentPrefs(Dictionary<string, string> kvp) 41 public AgentPrefs(Dictionary<string, string> kvp)