aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/FriendsModule.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-04-13 22:47:12 +0000
committerTeravus Ovares2008-04-13 22:47:12 +0000
commitbe93c0f29a888db26676347f7011b66dff3d7499 (patch)
tree6647a7fe1c8aaa6e8306ebee4ec960babdf0d0ea /OpenSim/Region/Environment/Modules/FriendsModule.cs
parent* Temporarily, stop the exception of mantis #951 from killing the entire clie... (diff)
downloadopensim-SC_OLD-be93c0f29a888db26676347f7011b66dff3d7499.zip
opensim-SC_OLD-be93c0f29a888db26676347f7011b66dff3d7499.tar.gz
opensim-SC_OLD-be93c0f29a888db26676347f7011b66dff3d7499.tar.bz2
opensim-SC_OLD-be93c0f29a888db26676347f7011b66dff3d7499.tar.xz
* Fix a bug in the friends module that causes a friend not to appear online when they were.
* A few things for testing. * This makes a modification to the region registration with the grid server so that the region can send it a chosen password to identify itself. It will not cause any errors, if either one are not updated.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/FriendsModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/FriendsModule.cs b/OpenSim/Region/Environment/Modules/FriendsModule.cs
index fc14df7..fad297e 100644
--- a/OpenSim/Region/Environment/Modules/FriendsModule.cs
+++ b/OpenSim/Region/Environment/Modules/FriendsModule.cs
@@ -190,7 +190,7 @@ namespace OpenSim.Region.Environment.Modules
190 List<LLUUID> updateUsers = new List<LLUUID>(); 190 List<LLUUID> updateUsers = new List<LLUUID>();
191 foreach (FriendListItem fli in lfli) 191 foreach (FriendListItem fli in lfli)
192 { 192 {
193 if (fli.onlinestatus = true) 193 if (fli.onlinestatus == true)
194 { 194 {
195 updateUsers.Add(fli.Friend); 195 updateUsers.Add(fli.Friend);
196 } 196 }