aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client
diff options
context:
space:
mode:
authorMelanie2010-02-28 22:47:31 +0000
committerMelanie2010-02-28 22:47:31 +0000
commit44e7224b86dbcd369ce2569328e3b00fc3b209ab (patch)
tree597d7684c719a5ca726c25aa35b058abd126cae1 /OpenSim/Client
parentInitial Online friends notification seems to be working reliably now. All thi... (diff)
downloadopensim-SC_OLD-44e7224b86dbcd369ce2569328e3b00fc3b209ab.zip
opensim-SC_OLD-44e7224b86dbcd369ce2569328e3b00fc3b209ab.tar.gz
opensim-SC_OLD-44e7224b86dbcd369ce2569328e3b00fc3b209ab.tar.bz2
opensim-SC_OLD-44e7224b86dbcd369ce2569328e3b00fc3b209ab.tar.xz
Add missing ChangeUserRights packet sender
Diffstat (limited to '')
-rw-r--r--OpenSim/Client/MXP/ClientStack/MXPClientView.cs4
-rw-r--r--OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs4
-rw-r--r--OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs4
3 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
index 167a40c..b40a09b 100644
--- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
+++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
@@ -1706,5 +1706,9 @@ namespace OpenSim.Client.MXP.ClientStack
1706 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) 1706 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1707 { 1707 {
1708 } 1708 }
1709
1710 public void SendChangeUserRights(UUID friendID, int rights)
1711 {
1712 }
1709 } 1713 }
1710} 1714}
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
index 6185164..22a37d1 100644
--- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
+++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
@@ -1195,6 +1195,10 @@ namespace OpenSim.Client.Sirikata.ClientStack
1195 { 1195 {
1196 } 1196 }
1197 1197
1198 public void SendChangeUserRights(UUID friendID, int rights)
1199 {
1200 }
1201
1198 #endregion 1202 #endregion
1199 } 1203 }
1200} 1204}
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
index 7a32e7f..2630774 100644
--- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
+++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
@@ -1210,5 +1210,9 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
1210 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) 1210 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1211 { 1211 {
1212 } 1212 }
1213
1214 public void SendChangeUserRights(UUID friendID, int rights)
1215 {
1216 }
1213 } 1217 }
1214} 1218}